Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 2 additions & 2 deletions perception/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
import perception.tasks.segmentation.saliency_detection.MBD as MBD
from perception.tasks.segmentation.COMB_SAL_BG import COMB_SAL_BG
import perception.vis.TestTasks.BackgroundRemoval as BackgroundRemoval
import perception.tasks.roulette.color_detection as RouletteColorDetector
from perception.tasks.dice.DiceDetector import DiceDetector
import perception.tasks._archive.roulette.color_detection as RouletteColorDetector
from perception.tasks._archive.dice.DiceDetector import DiceDetector

ALGOS = {
'test': TestAlgo.TestAlgo,
Expand Down
Empty file.
Empty file.
1 change: 1 addition & 0 deletions perception/tasks/buoy/classical/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
"""Classical computer-vision algorithms for buoy detection."""
1 change: 1 addition & 0 deletions perception/tasks/buoy/tests/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
"""Tests for buoy detection algorithms."""
1 change: 1 addition & 0 deletions perception/tasks/buoy/yolo/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
"""Buoy YOLO algorithms, pending confirmation of the model integration."""
Empty file.
1 change: 1 addition & 0 deletions perception/tasks/octagon/classical/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
"""Classical computer-vision algorithms for octagon detection."""
1 change: 1 addition & 0 deletions perception/tasks/octagon/tests/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
"""Tests for octagon detection algorithms."""
1 change: 1 addition & 0 deletions perception/tasks/octagon/yolo/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
"""Octagon YOLO algorithms, pending confirmation of the model integration."""
Empty file.
1 change: 1 addition & 0 deletions perception/tasks/torpedo/classical/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
"""Classical computer-vision algorithms for torpedo detection."""
1 change: 1 addition & 0 deletions perception/tasks/torpedo/tests/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
"""Tests for torpedo detection algorithms."""
1 change: 1 addition & 0 deletions perception/tasks/torpedo/yolo/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
"""Torpedo YOLO algorithms, pending confirmation of the model integration."""
Loading