image-labelling-tool icon indicating copy to clipboard operation
image-labelling-tool copied to clipboard

Fork from https://bitbucket.org/ueacomputervision/image-labelling-tool

Results 4 image-labelling-tool issues
Sort by recently updated
recently updated
newest added

Thanks for the commendable work. I am trying to annotate invasive cancer patches(png) using :- python image-labelling-tool/flask_app.py --image_dir image-labelling-tool/examples/simple/invasive_images --label_names image-labelling-tool/examples/simple/label_names_example.yml --file_ext png --slic getting the below error as output...

Thanks for your work! Some of my images are too large to display (6000 x 4000). I think it is necessary to rescale images to fit the screen.

I am using Anaconda 3 with python 3.6 on Mac. By running "Image labeller notebook.ipynb" on Jupyter notbook, the labbeller wont display. It does not give any error. Just write...

In [train_utils.py](https://github.com/yuyu2172/image-labelling-tool/blob/master/examples/ssd/train_utils.py), you've made a **horizontal flip**: ` # 5. Random horizontal flipping img, params = transforms.random_flip( img, x_random=True, return_param=True) bbox = transforms.flip_bbox( bbox, (self.size, self.size), x_flip=params['x_flip']) ` I'm wondering...