MrD is a free image labeling and training tool developed in C# WPF based on Visual Studio 2022
The current version supports labeling classification datasets and training, auto labeling.
- Visual Studio 2022
- Microsoft .NET 6
- Classification Training
classification_training.mp4
- Classification Auto Labeling
auto_labeling.mp4
Shortcut Key | Function |
---|---|
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 |
- __target_info.json
- File containing representative label information
[
{
"Color":"#FFFF0000",
"Name":"Bread"
},
{
"Color":"#FF008000",
"Name":"Pizza"
},
{
"Color":"#FFFFFFFF",
"Name":"Hamburger"
},
{
"Color":"#FFF79646",
"Name":"Chicken"
}
]
- (each file).json
- A file containing user-labeled information about an image.
{
"FileName":"1_1_bread.jpg",
"FilePath":"C:\\Users\\Fiat\\Desktop\\food\\1_1_bread.jpg",
"ClassCollection":[
{
"Color":"#FFFF0000",
"Name":"Bread"
}
]
}
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.