Skip to content

Commit

Permalink
work
Browse files Browse the repository at this point in the history
  • Loading branch information
TowhidKashem committed Dec 25, 2022
1 parent a59a6ba commit f1ec4c2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ https://user-images.githubusercontent.com/1139927/209462763-17b58b7d-3e14-424d-b

<br />

<p>When preparing datasets for training image classification models it's a real pain to manually sift through thousands of images to weed out the inaccurate, duplicate and broken ones. This app aims to make the process a little more tolerable by allowing you to use keyboard shortcuts to quickly cycle through all the images in a folder and delete the ones you don't want.</p>
<p>When preparing datasets for training image classification models it's a real pain to manually sift through thousands of images to weed out the inaccurate, duplicate and broken ones. This cross-platform app aims to make the process a little more tolerable by allowing you to use keyboard shortcuts to quickly cycle through all the images in a folder and delete the ones you don't want.</p>

## Installation

Expand Down Expand Up @@ -77,7 +77,13 @@ In other words if you have a root folder with subfolders for each _class_, and i

2. Click the second button if you just want to browse a single folder full of images

## Roadmap

- Automate deleting duplicate images
- Automate deleting broken images

## Credits

- [IOS Camera Icon](https://iconscout.com/icon/photos-30) by Giulio Smedile
- [Electron React Boilterplate](https://github.com/electron-react-boilerplate/electron-react-boilerplate)
- [Chakra UI component library](https://chakra-ui.com)
1 change: 1 addition & 0 deletions src/renderer/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import { AppContext } from './_data';
export function App() {
const [pathSegments, setPathSegments] = useState<string[]>([]);
const [directories, setDirectories] = useStateCallback<DirContentT[]>([]);

const images = useRef<DirContentT[]>([]);

return (
Expand Down

0 comments on commit f1ec4c2

Please sign in to comment.