Fast Image Annotation Tool, Free image labeling tool for deep learning
Project description
FIAT 0.7 (Fast Image Annotation Tool)
FIAT is a free image labeling tool developed in C# WPF based on Visual Studio 2022
The current version supports labeling classification datasets and provides a PyTorch dataset loader.
Development Environment
- Visual Studio 2022
- Microsoft .NET 6
Download
Reference
DEMO
- Classification
Menu
Shortcut Key
- F1~F12 : Label the image with the target label at that index
- Ctrl + S : Save all label information
- Ctrl + O : Open image folder
- Up : Previous image
- Down : Next image
PyTorch training loop example
import torch
import torch.nn as nn
from torch.utils.data import DataLoader
from util.FIATClassificationDataset import FIATClassificationDataset
batch_size = 1
training_epochs = 1
datasets = FIATClassificationDataset('C://Github//FIAT//example_dataset//food//', #FIAT dataset path
label_height=224, #image height
label_width=224, #image width
isColor=True, #color load flag
isNorm=False) #0~1 normalization flag
data_loader = DataLoader(datasets, batch_size=batch_size, shuffle=True)
for epoch in range(training_epochs):
avg_cost = 0
avg_acc = 0
total_batch = len(data_loader)
for x_input, y_input in data_loader:
print('x_input shape = ', x_input.shape)
print('y_input shape = ', y_input.shape)
print('Training loop finished')
C:\Python\python.exe C:/Github/FIAT/python/torch_classification_FIATC_test.py
{'Color': '#FFFF0000', 'Name': 'Bread'}
{'Color': '#FF008000', 'Name': 'Pizza'}
{'Color': '#FFFFFFFF', 'Name': 'Hamburger'}
{'Color': '#FFF79646', 'Name': 'Chicken'}
x_input shape = torch.Size([1, 3, 224, 224])
y_input shape = torch.Size([1, 4])
x_input shape = torch.Size([1, 3, 224, 224])
y_input shape = torch.Size([1, 4])
Strcture
Classification
-
__target_info.json
- File containing representative label information
-
(each file).json
- A file containing user-labeled information about an image.
The MIT License (MIT)
Copyright (c) 2022-present FIAT Development Team
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file fiat_tool-0.7.0.9-py3-none-any.whl.
File metadata
- Download URL: fiat_tool-0.7.0.9-py3-none-any.whl
- Upload date:
- Size: 4.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.7.8rc1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7fe9a54864b1a6ff6bd94d67972c60c05539d383fcfac2834cd72864b9bf31d8
|
|
| MD5 |
5002bb632bf3d3c57adc6b662b7b0dbd
|
|
| BLAKE2b-256 |
73bd90abdbf64c67a1f9bc6be89664c5b0a6ae001da4981f759584f7b9098023
|