Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/davidalgis/pydot2dot
Create a dot to dot draw from an image
https://github.com/davidalgis/pydot2dot
Last synced: 6 days ago
JSON representation
Create a dot to dot draw from an image
- Host: GitHub
- URL: https://github.com/davidalgis/pydot2dot
- Owner: davidAlgis
- License: mit
- Created: 2024-09-02T19:10:54.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2024-11-03T17:42:05.000Z (13 days ago)
- Last Synced: 2024-11-03T18:26:13.239Z (13 days ago)
- Language: Python
- Size: 1.29 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Dot-to-Dot Image Processor
This project helps in creating a dot-to-dot version of an image:
![](assets/test_demo.jpeg)
This tool processes an image to detect contours or paths and generates an output image with dots placed along them. It also adds labels to each dot and allows for additional customization such as dot color, radius, and distance between dots.
![](assets/example_gui.jpeg)
## Usage
Ensure you have [Python](https://www.python.org/downloads/) 3.6 or newer installed on your system. Then you can simply launch the application with `dot_2_dot.exe`.
## Details about parameters
### Two ways to change sizes
1. **Using pixel values for radius and font size**:
```
Radius 10
```In this example, the radius of the dots will be 10 pixels, and the font size for labels will be 15 pixels.
2. **Using percentages for radius and font size**:
```
Font Size 2%
```In this example, the radius of the dots will be 5% of the diagonal of the image, and the font size will be 2% of the diagonal.
### Using both distance and number of points
You can combine the `distance` and `numPoints` parameters to control both the number of dots and their spacing.
```
Number of Points 100
Distance Min 5%
Distance Max 10%
```This will first simplify the path to around 100 points and then adjust the placement of dots so that the distance between them is between 5% and 10% of the diagonal length.
### More about the placement of the dots
The placement of the dots is controlled by the `Shape Detection` argument, which determines the method used to detect shapes in the image. There are two methods available:
- **Contour Method (`Shape Detection Contour`)**: This method detects the contours in the image using OpenCV's contour detection algorithms. It approximates the contours of shapes in the image and places dots along these contours. This method is suitable for images with "closed" shapes. A closed shape has an endpoint that connects back to its beginning, such as this one:
![](assets/figure_contour.jpeg)
- **Path Method (`Shape Detection Path`)**: This method uses skeletonization to extract the central path or skeleton of the largest shape in the image. It is useful for images with shapes that are "open," where the shape starts and ends at different points, like this one:
![](assets/figure_path.jpeg)
### More about the number of dots
The number of dots placed along the paths is influenced by several parameters that control the simplification and spacing of the points:
- **Epsilon**: This parameter controls the approximation accuracy for contour simplification. A smaller epsilon value results in a higher number of points (more detailed contours), while a larger epsilon value reduces the number of points by simplifying the contours more aggressively. Lowering the epsilon value increases the number of dots, capturing finer details of the shape.
- **Distance Min and Max**: These values set the minimum and maximum distances between points as percentages of the image diagonal. The script enforces these distance constraints after simplifying the path. Points closer than the minimum distance will be removed, and midpoints will be inserted between points that are farther apart than the maximum distance. The distance parameters have priority over the desired number of points (`Number of Points`).
- **Desired Number of Points**: This parameter specifies the desired number of points in the simplified path. The script will first attempt to simplify the path to approximately this number of points using the Visvalingam–Whyatt algorithm.
### Priority of Parameters
The script processes the number of dots in the following order:
1. **Initial Simplification**: The path is simplified to reach the desired number of points specified by `Number of Points` using the epsilon value and simplification algorithms.
2. **Enforcing Distance Constraints**: After simplification, the script adjusts the points to satisfy the minimum and maximum distance requirements:
3. **Insertion of Midpoints**: If the distance between two consecutive points exceeds the maximum distance (`distance max`), additional points (midpoints) are inserted to reduce the spacing.
4. **Removal of Points**: If points are closer than the minimum distance (`distance min`), they are removed to increase the spacing.
Due to this process, the distance constraints have priority over the desired number of points. The script will adjust the number of dots by adding or removing points to ensure that all points meet the specified distance requirements, even if this means deviating from the initial `Number of Points` value.
## Command Line Usage (Advanced)
For an advance usage, you can use the application through command line.
### Installation
Before running the script, make sure to install the required Python libraries. You can install them using the provided `requirements.txt` file.
```
pip install -r requirements.txt
```### Usage
Ensure you have Python 3.6 or newer installed on your system. Clone this repository or download the scripts and `requirements.txt` file. Install the required libraries as mentioned above. To use the script, run it from the command line with the desired options:
```
python main.py [options]
```By default it launches the gui windows like the example above, but you can apply the computation only with command line arguments and no graphics.
### Options
- `-g`, `--gui`: Open the gui or used the console mode. Defaults to `True`.
- `-i`, `--input` ``: Specify the input image path or a folder of images to process. Defaults to `input.png`. If a folder is provided, all images inside will be processed.
- `-o`, `--output` ``: Specify the output image path or folder. If not provided, the input name with `_dotted` will be used.
- `-sd`, `--shapeDetection` ``: Shape detection method to use. Choose between `"Contour"` or `"Path"`. Defaults to `"Contour"`.
- `-np`, `--numPoints` ``: Desired number of points in the simplified path (applies to both methods). If not specified, all points after processing will be used.
- `-d`, `--distance` ` `: Minimum and maximum distances between points. You can provide the values in pixels or as percentages of the image diagonal. For example, `-d 20 50` specifies a minimum distance of 20 pixels and a maximum of 50 pixels, while `-d 5% 10%` specifies distances as percentages of the image diagonal. Has no default value, therefore points could overlap each other by default.
- `-e`, `--epsilon` ``: Epsilon for path approximation. Defaults to `0.001`.
- `-f`, `--font` ``: Specify the font file name used for labeling. Searched automatically in `C:\Windows\Fonts`. Defaults to `Arial.ttf`.
- `-fs`, `--fontSize` ``: Specify the font size for labeling the dots. You can provide the size in pixels or as a percentage of the image diagonal. For example, `-fs 12` specifies a font size of 12 pixels, while `-fs 1%` specifies a font size of 1% of the diagonal length. Default is `1%`.
- `-fc`, `--fontColor` ` `: Specify the font color for labeling as 4 values in RGBA format (e.g., `0 0 0 255` for black). Defaults to `0 0 0 255`.
- `-dc`, `--dotColor` ` `: Specify the dot color as 4 values in RGBA format (e.g., `0 0 0 255` for black). Defaults to `0 0 0 255`.
- `-r`, `--radius` ``: Specify the radius of the dots. You can provide the radius in pixels or as a percentage of the image diagonal. For example, `-r 10` specifies a radius of 10 pixels, while `-r 2%` specifies a radius of 2% of the diagonal length. Default is `0.5%`.
- `--dpi` ``: Specify the DPI (dots per inch) of the output image. Defaults to `400`.
- `-tb`, `--thresholdBinary` ` `: Specify the threshold value and maximum value for binary thresholding. Defaults to `100 255`.
- `-de`, `--debug`: Enable debug mode to display intermediate steps such as the contours and dot placements.
- `-do`, `--displayOutput`: Display the output image after processing. Defaults to `True`.
- `-v`, `--verbose`: Enable verbose mode to print progress information during execution. Defaults to `True`.
- `-h`, `--help`: Displays information about every argument.
### Examples
### Basic Usage
To process an image with default settings:
```
python main.py -i "my_image.png"
```