Coder Social home page Coder Social logo

image-analyzer's Introduction

Image Analyzer

Este proyecto fue construido en el margen del proyecto de grado "Tasación de siniestros de automóviles mediante reconocimiento de imágenes aplicando inteligencia computacional". El objetivo del proyecto es mediante una interfaz web permitir etiquetar un conjunto de imágenes de vehículos del BSE.

Setup

  1. Correr el comando npm i nodemon -g
  2. En el directorio del proyecto ejecutar npm install
  3. Luego, en el mismo directorio ejecutar yarn. Para instalar yarn usar npm install --global yarn.
  4. Luego cd a la carpeta /client, y correr npm install.
  5. En el directorio raiz crear la carpeta /imgs e insertar las imágenes que se quieren analizar.

Ejecutar proyecto

Una vez que está todo configurado, ejectuar en la raiz el comando npm run dev.

Abrir un navegador e ir a http://localhost:3000 para utilizar la herramienta.

Resultados

El resultado del etiquetado se encuentra state_1.json y state_1.csv.

Configurar las etiquetas

Para configurar las etiquetas que se desean utilizar, modificar el /client/src/classesConfig.js.

Aquí hay un ejemplo:

const classesConfig = [
    {
        property: "time_of_day",
        name: "Time of Day",
        options: ["day", "night"],
        isMultiSelect: false,
    },
    {
        property: "object",
        name: "Object",
        options: ["no_vehicle", "other_vehicle", "ok_car", "broken_car"],
        isMultiSelect: false,
    },
    {
        property: "severity",
        name: "Severity",
        options: ["low", "medium", "high"],
        isMultiSelect: false,
    },
    {
        property: "damage_type",
        name: "Damage Type",
        options: ["bumper_dent", "door_dent", "glass_shatter", "h_lamp_broken", "t_lamp_broken", "scratch", "smash", "other"],
        isMultiSelect: true,
    }
]

module.exports = classesConfig;

image-analyzer's People

Contributors

francocuevas444 avatar nachoalonso09 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.