Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
270d57d
Updated Docs
vaibhawkhemka Feb 22, 2021
f3e194d
Merge pull request #1 from vaibhawkhemka/contributer
vaibhawkhemka Feb 22, 2021
3e5467d
Create specificworker.py
vaibhawkhemka Mar 21, 2021
e51d2d0
Create genericworker.py
vaibhawkhemka Mar 21, 2021
48f43af
Create layers.py
vaibhawkhemka Mar 21, 2021
1f67ea4
Create utils.py
vaibhawkhemka Mar 21, 2021
31f7be0
Create depthestimationI.py
vaibhawkhemka Mar 21, 2021
3b84a1d
Create CMakeLists.txt
vaibhawkhemka Mar 21, 2021
d73cfb7
Create DepthEstimation.py
vaibhawkhemka Mar 21, 2021
b41e66a
Create config-run.txt
vaibhawkhemka Mar 21, 2021
f718c82
Create config.txt
vaibhawkhemka Mar 21, 2021
83572a5
Create assets
vaibhawkhemka Mar 21, 2021
6d26d80
Create DepthEstimation.cdsl
vaibhawkhemka Mar 21, 2021
581a958
Create CMakeLists.txt
vaibhawkhemka Mar 21, 2021
9037de5
Create DoxyFile.txt
vaibhawkhemka Mar 21, 2021
2d89402
Create README.md
vaibhawkhemka Mar 21, 2021
134d40e
Delete assets
vaibhawkhemka Mar 21, 2021
40bd301
Create gfs
vaibhawkhemka Mar 21, 2021
b52435d
Delete gfs
vaibhawkhemka Mar 21, 2021
a4d3c75
Create slf
vaibhawkhemka Mar 21, 2021
444fe15
Create specificworker.py
vaibhawkhemka Mar 21, 2021
2b92dea
Create genericworker.py
vaibhawkhemka Mar 21, 2021
e2e9af5
Create depthestimationclientI.py
vaibhawkhemka Mar 21, 2021
88d19f9
Create DepthEstimationClient.py
vaibhawkhemka Mar 21, 2021
cea6c80
Create display.py
vaibhawkhemka Mar 21, 2021
dfb820c
Create CMakeLists.txt
vaibhawkhemka Mar 21, 2021
e3c8229
Create DepthEstimationClient.cdsl
vaibhawkhemka Mar 21, 2021
63fb77a
Create DoxyFile.txt
vaibhawkhemka Mar 21, 2021
a1caaac
Create CMakeLists.txt
vaibhawkhemka Mar 21, 2021
4987828
Create config.txt
vaibhawkhemka Mar 21, 2021
fe681c4
Create config-run.txt
vaibhawkhemka Mar 21, 2021
276d23a
Update README.md
vaibhawkhemka Mar 21, 2021
3a1b2ec
Update README.md
vaibhawkhemka Mar 21, 2021
b589256
Update README.md
vaibhawkhemka Mar 21, 2021
b14ff9b
Create README.md
vaibhawkhemka Mar 21, 2021
bb782d2
Delete components/detection/test/depthEstimationClient directory
vaibhawkhemka Mar 22, 2021
d27ddc9
Delete slf
vaibhawkhemka Mar 23, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions components/detection/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
- `activityRecognition`: component predicts human activity based on the sequence of human skeleton gesture movements(e.g set of human joints)
- `apriltagsComp`: component recognizes augmented reality (AR) April tags. April tags are AR tags designed to be easily detected by (robot) cameras.
- `colorTracking`: component is an interactive application that allows the user to track an area of color through an image stream from an RGBD sensor.
- `depthEstimation`: component predicts depth of an image stream from any camera.
- `emotionRecognition2`: component can detect faces and recognize emotions on an image stream from any type of camera.
- `faceidentification`: component recognizes human faces and tags them according to training dataset.
- `handDetection`: component can detect and track human hands through an image stream from an RGBD sensor.
Expand Down
18 changes: 18 additions & 0 deletions components/detection/depthEstimation/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
cmake_minimum_required(VERSION 2.6)
PROJECT( DepthEstimation )

SET(RC_COMPONENT_PATH ${CMAKE_CURRENT_SOURCE_DIR} CACHE STRING "component base path")
SET(RC_COMPONENT_DEVEL_PATH ${CMAKE_CURRENT_SOURCE_DIR} CACHE STRING "component binary path")
ADD_SUBDIRECTORY( src )

MACRO( WRAP_PYTHON_UI )
FOREACH( input_file ${ARGN} )
ADD_CUSTOM_COMMAND (
OUTPUT src/ui_${input_file}.py
COMMAND pyside2-uic ${CMAKE_CURRENT_SOURCE_DIR}/src/${input_file}.ui -o ${CMAKE_CURRENT_SOURCE_DIR}/src/ui_${input_file}.py
DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/src/${input_file}.ui
COMMENT "Generating src/ui_${input_file}.py from src/${input_file}.ui"
)
ADD_CUSTOM_TARGET(ui_${input_file} ALL DEPENDS src/ui_${input_file}.py )
ENDFOREACH( input_file )
ENDMACRO( WRAP_PYTHON_UI )
10 changes: 10 additions & 0 deletions components/detection/depthEstimation/DepthEstimation.cdsl
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import "DepthEstimation.idsl";

Component DepthEstimation
{
Communications
{
implements DepthEstimation;
};
language Python;
};
Loading