Skip to content

Commit f597a3d

Browse files
authored
Remove deprecated deblurgan-v2 (#3899)
Close #3690
1 parent 5f8c498 commit f597a3d

File tree

23 files changed

+7
-1058
lines changed

23 files changed

+7
-1058
lines changed

demos/README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@
3333
omz_demos_handwritten_text_recognition_demo_python
3434
omz_demos_human_pose_estimation_demo_cpp
3535
omz_demos_human_pose_estimation_demo_python
36-
omz_demos_deblurring_demo_python
3736
omz_demos_image_inpainting_demo_python
3837
omz_demos_image_processing_demo_cpp
3938
omz_demos_image_retrieval_demo_python
@@ -101,7 +100,6 @@ The Open Model Zoo includes the following demos:
101100
- [Classification Benchmark C++ G-API Demo](./classification_benchmark_demo/cpp_gapi/README.md) - Classification Benchmark C++ G-API version.
102101
- [Colorization Python\* Demo](./colorization_demo/python/README.md) - Colorization demo colorizes input frames.
103102
- [Crossroad Camera C++ Demo](./crossroad_camera_demo/cpp/README.md) - Person Detection followed by the Person Attributes Recognition and Person Reidentification Retail, supports images/video and camera inputs.
104-
- [Deblurring Python\* Demo](./deblurring_demo/python/README.md) - Demo for deblurring the input images.
105103
- [Face Detection MTCNN Python\* Demo](./face_detection_mtcnn_demo/python/README.md) - The demo demonstrates how to run MTCNN face detection model to detect faces on images.
106104
- [Face Detection MTCNN C++ G-API\* Demo](./face_detection_mtcnn_demo/cpp_gapi/README.md) - The demo demonstrates how to run MTCNN face detection model to detect faces on images. G-API version.
107105
- [Face Recognition Python\* Demo](./face_recognition_demo/python/README.md) - The interactive face recognition demo.
@@ -115,7 +113,7 @@ The Open Model Zoo includes the following demos:
115113
- [Human Pose Estimation C++ Demo](./human_pose_estimation_demo/cpp/README.md) - Human pose estimation demo.
116114
- [Human Pose Estimation Python\* Demo](./human_pose_estimation_demo/python/README.md) - Human pose estimation demo.
117115
- [Image Inpainting Python\* Demo](./image_inpainting_demo/python/README.md) - Demo application for GMCNN inpainting network.
118-
- [Image Processing C++ Demo](./image_processing_demo/cpp/README.md) - Demo application for deblurring and enhancing the resolution of the input image.
116+
- [Image Processing C++ Demo](./image_processing_demo/cpp/README.md) - Demo application for enhancing the resolution of the input image.
119117
- [Image Retrieval Python\* Demo](./image_retrieval_demo/python/README.md) - The demo demonstrates how to run Image Retrieval models using OpenVINO™.
120118
- [Image Segmentation C++ Demo](./segmentation_demo/cpp/README.md) - Inference of semantic segmentation networks (supports video and camera inputs).
121119
- [Image Segmentation Python\* Demo](./segmentation_demo/python/README.md) - Inference of semantic segmentation networks (supports video and camera inputs).

demos/common/cpp/models/include/models/deblurring_model.h

Lines changed: 0 additions & 52 deletions
This file was deleted.

demos/common/cpp/models/src/deblurring_model.cpp

Lines changed: 0 additions & 158 deletions
This file was deleted.

demos/common/python/openvino/model_zoo/model_api/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@ The following tasks can be solved with wrappers usage:
6161
|----------------------------|--------------------|
6262
| Background Matting | <ul><li>`VideoBackgroundMatting`</li><li>`ImageMattingWithBackground`</li><li>`PortraitBackgroundMatting`</li></ul> |
6363
| Classification | <ul><li>`Classification`</li></ul> |
64-
| Deblurring | <ul><li>`Deblurring`</li></ul> |
6564
| Human Pose Estimation | <ul><li>`HpeAssociativeEmbedding`</li><li>`OpenPose`</li></ul> |
6665
| Instance Segmentation | <ul><li>`MaskRCNNModel`</li><li>`YolactModel`</li></ul> |
6766
| Monocular Depth Estimation | <ul><li> `MonoDepthModel`</li></ul> |

demos/common/python/openvino/model_zoo/model_api/models/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
from .background_matting import ImageMattingWithBackground, VideoBackgroundMatting, PortraitBackgroundMatting
2020
from .centernet import CenterNet
2121
from .classification import Classification
22-
from .deblurring import Deblurring
2322
from .detection_model import DetectionModel
2423
from .detr import DETR
2524
from .ctpn import CTPN
@@ -45,7 +44,6 @@
4544
'CenterNet',
4645
'Classification',
4746
'CTPN',
48-
'Deblurring',
4947
'DetectionModel',
5048
'DetectionWithLandmarks',
5149
'DETR',

demos/common/python/openvino/model_zoo/model_api/models/deblurring.py

Lines changed: 0 additions & 80 deletions
This file was deleted.

0 commit comments

Comments
 (0)