Skip to content
Snippets Groups Projects
Commit 43a2fd92 authored by Manon Blanco's avatar Manon Blanco Committed by Manon Blanco
Browse files

Remove DPI adjustment from the data preprocessing

parent 39023077
No related branches found
No related tags found
No related merge requests found
......@@ -355,19 +355,6 @@ def apply_preprocessing(sample, preprocessings):
resize_ratio = [1, 1]
img = sample["img"]
for preprocessing in preprocessings:
if preprocessing["type"] == "dpi":
ratio = preprocessing["target"] / preprocessing["source"]
temp_img = img
h, w, c = temp_img.shape
temp_img = cv2.resize(
temp_img, (int(np.ceil(w * ratio)), int(np.ceil(h * ratio)))
)
if len(temp_img.shape) == 2:
temp_img = np.expand_dims(temp_img, axis=2)
img = temp_img
resize_ratio = [ratio, ratio]
if preprocessing["type"] == "to_grayscaled":
temp_img = img
h, w, c = temp_img.shape
......
......@@ -27,14 +27,6 @@ All hyperparameters are specified and editable in the training scripts (meaning
Preprocessing is applied before training the network (see `dan/manager/dataset.py`).
The following transformations are implemented:
* DPI adjustment
```py
{
"type": "dpi",
"source": 300,
"target": 150,
}
```
* Convert to grayscale
```py
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment