App available online at https://evening-caverns-09995.herokuapp.com/.
- Description
a. Input image data setup
b. Annotation labels
c. Output data
d. Browser compatibility - Local setup
a. First time setup
b. Run server
c. Custom configuration - Program documentation
a. Package dependencies
b. File structure
c. Server architecture
d. API endpoints
e. Client architecture
f. Client-server communication - Used libraries
Image annotation tool for machine learning, capable of importing images and exporting annotations in JSON format to Google Drive. App is built in Node.js on Express framework. It uses Google API to communicate with Google Drive. App is available online at https://evening-caverns-09995.herokuapp.com/. In case you want to setup the app locally, follow instructions in local setup chapter below.
Before using the app, you need to set up a Google Drive folder with the images to annotate.
- Create a new folder inside your Google Drive
- Put all dataset images in the folder (supported image formats are
.jpg
and.png
) - Share the folder with e-mail address of the account whose credentials the server is using (in case you haven’t set up the app locally, the e-mail is
annotation.tester@gmail.com
) and make sure you select Editor permissions (necessary for uploading resulting annotation JSON data back to that folder), in case you set up the app locally and you are using the same account for server API and client, skip this step
Before annotating you need to import JSON file with labels defined. Example labels for annotating chess games.
- properties:
name
- label set namedescription
- label set descriptionitems
- array of label objectsname
- text name for a categoryid
- category id, which displays in annotation output JSON fileshape
- shape of the annotation, currently supported arerectangle
(drag a rectangle around object),ellipse
(drag an ellipse around object),polygon
(click to create vertices),point
(click to create a point) andline
(drag a line)img_src
- (optional) path to image to be used as icon
- After you open client page, input folder ID by clicking
New folder
button (when you are inside that folder on your drive it's the last part of the URLdrive.google.com/drive/u/0/folders/FOLDER_ID
) - Import labels JSON file using
Import labels
button (see section below) - Annotate your image (see section below)
- When finished with the image, click
Submit
button, the annotation data will be converted to JSON format and uploaded to the same Google Drive folder the images are downloaded from with the same basename as the image (image_name.jpg
->image_name.json
) - If you later want to change the source folder ID, you can do so by clicking
New folder
button
- pan image by holding right click
- zoom image in and out with scroll wheel
- depending on currently selected label shape you either draw by left clicking or left clicking and dragging cursor
- complete polygon annotation by clicking orange button placed on the first vertex
- line between first two polygon vertices is orange, this can be used to annotate polygon orientation
- undo last drawn annotation using
CTRL + Z
- redo undo-ed annotation using
CTRL + Y
- toggle hide and show all current annotations with
SPACE
- toggle hide and show all annotation miniatures with
left ALT
- delete any previous annotation by selecting it in the right history panel and pressing
DEL
orBACKSPACE
Clicking submit uploads all annotation data to the same Google Drive folder the images were downloaded from. They are in JSON format as an array of objects, each object representing one annotation, having attributes about their shape, label name, position and size. Example output file containing all 5 possible annotations shapes:
See example
[
{
"shape": "rectangle",
"label": "white_pawn",
"offsetX": 360,
"offsetY": 176,
"sizeX": 102,
"sizeY": 137
},
{
"shape": "polygon",
"label": "chess_board",
"points": [
{
"x": 650,
"y": 627
},
{
"x": 942,
"y": 616
},
{
"x": 601,
"y": 390
}
]
},
{
"shape": "line",
"label": "someLine",
"points": [
{
"x": 359,
"y": 558
},
{
"x": 459,
"y": 744
}
]
},
{
"shape": "point",
"label": "somePoint",
"offsetX": 253,
"offsetY": 684
},
{
"shape": "ellipse",
"label": "someEllipse",
"offsetX": 875,
"offsetY": 189,
"sizeX": 186,
"sizeY": 124
}
]
- Chrome (tested on version 87)
- Firefox (tested on version 83)
- Edge (tested on version 87)
- Make sure you have node.js installed (verify installation by running
node -v
) - Run
npm install
in root directory - Enable Google Drive API (only step 1) When prompted select
Desktop app
, then click download client configuration. If you are going to use the server only yourself you can use your own Google account, otherwise I recommend creating a new Google account for this - Put downloaded
credentials.json
file from step 1 intodrive
folder, upon starting the server for the first time you will be prompted to authentificate in the terminal
- Run
npm start
in root directory - Client page will be accessible at
localhost:3000
- to use the client page reffer to the chapter Description above
- some controls can be remapped/adjusted in
public/config.js
file
File public/config.js
provides some options to alter behaviour of the client page, in particular:
- change image zoom sensitivity, max zoom and min zoom
- remap mouse button to different actions
- change thickness of annotations
- change size of point annotations
- set different annotation color
- Express - Fast, unopinionated, minimalist web framework for Node.js
- Body parser - Parse incoming request bodies in a middleware
- Google APIs - Node.js client library for using Google APIs
- Nodemon - Utility that will monitor for any changes in your source and automatically restart your server
Image-annotation
│───app.js // server file, registering all the API endpoints
│───example_chess_labels.json // Example labels file
│───package.json
│───package-lock.json
│───README.md // this file
│
└───public // client app
│ │───img // various images and icons
│ │───tmp // directory where images to annotate will be downloaded from Google Drive API
│ │───API.js // client server interconnect
│ │───config.js // configuration file to change client settings
│ │───drawAnnotations.js // responsible for handling annotation drawing
│ │───index.css
│ │───index.html
│ │───index.js // main client file, request API to get image and import labels
│ └───transformImage.js // responsible for handling image zooming and padding
│
└───drive
│───drive.js // communication with Google Drive API
└───[this is where you want to place your credentials.json file]
Upon user entering folder ID, server is requested with providing image from Google Drive folder using /image endpoint, server retrieves list of all files inside the folder from Drive API, finds out which images have already been annotated (all annotated images have .json file with the same basename as them), downloads one of them and sends its filename to the client. Client requests image file from the /imageFile endpoint attaching folder id and image name to the request. Note that in the first request the file is not directly downloaded to the client but to the server, from which it is linked in the second request. Clicking submit button prepares all annotation data and is sent to server which creates a new file with the same basename as the image with .json extension and is uploaded to the same Google Drive folder.
Path | Method | Description |
---|---|---|
/ | GET | Request client page |
/image | POST | Send folder id, receive first unannotated image name |
/imageFile | GET | Send folder id and image name, receive image file |
/submit | POST | Send image name, folder id and JSON annotation data to be uploaded |
Client page consists of multiple panels and image area. When user imports label file, JSON is parsed and for each label an item inside left panel is created. Items can be selected on click. Drawing a new annotation shape will use the label which is currently selected. Label also determines annotation shape.
Available shapes are:
- Rectangle – represented by html div element with border
- Ellipse – represented by html div element with border and border-radius 50%
- Point – represented by small html div element with border and border-radius 50%
- Line – represented by rotated html div element with border and 0 height
- Polygon – represented by multiple lines, line drawn first is highlighted to depict orientation (for example determining one particular side of a chessboard)
Drawing a shape registers a new element in annotationArray
variable and creates a new item in right history panel. History panel items can be clicked on, highlighting the annotation in picture. Pressing delete or backspace key will delete the selected annotation.
Deleting an annotation will not delete corresponding HTML element, rather hide it by setting its display to none. This allows the annotation to be reverted using undo action.
Hiding all annotations sets display of html element of every annotation to none, showing annotations sets display back to block.
Each annotation has either icon or text next to it to show its label. If the label has defined img_src
property in imported JSON label file, it uses icon referred to in code as miniature
. Otherwise small text with the name of the label is shown, referred to in code as miniature-label
.
Clicking submit button removes html elements bound to annotations in annotationArray
and converts annotation data to JSON which is sent to server.
Image container element contains event handlers to respond to mouse wheel scrolling by zooming the image and to respond to dragging with right mouse button to pan the image. Image is moved and zoomed by manipulating its CSS transform properties. HTML elements representing annotations are parented to the image so their position is anchored to the same location on image. Thickness of annotation is invariant to zoom, which means absolute border thickness has to be adjusted to counter relative size of whole shape changing while zooming. Everything connected to image position manipulation is done in the transformImage.js
file.
Client downloads images and uploads JSON data to server using functions downloadImage
and uploadAnnotations
defined inside API.js
. These can be simply altered to use your own image source or upload target. Available helper functions is showErrorMessage(msg)
. Make sure to call setImageName(filename, extension)
to display the name in the header and store it in code. Modify main image element by changing the source attribute of img element with id #image
.
https://stackoverflow.com/questions/17408010/drawing-a-rectangle-using-click-mouse-move-and-click http://jsfiddle.net/d9BPz/546/
https://stackoverflow.com/questions/4270485/drawing-lines-on-html-page