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: 4 additions & 0 deletions software/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ All dates in this file are given in the [UTC time zone](https://en.wikipedia.org

## Unreleased

### Fixed

- (Application: backend) The segmenter should no longer have file permissions errors when trying to read or write files in directories created by Docker or by the Python hardware controller.

## v2024.0.0-alpha.0 - 2024-02-06

### Added
Expand Down
4 changes: 2 additions & 2 deletions software/distro/setup/base-os/forklift/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
# distribution

config_files_root=$(dirname $(realpath $BASH_SOURCE))
forklift_version="0.5.0"
forklift_version="0.5.3"
pallet_path="github.com/PlanktoScope/pallet-standard"
pallet_version="v2024.0.0-alpha.0"
pallet_version="b1dd05d"

curl -L "https://github.com/PlanktoScope/forklift/releases/download/v$forklift_version/forklift_${forklift_version}_linux_arm.tar.gz" \
| sudo tar -C /usr/bin -xz forklift
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,3 @@ cp "$HOME/device-backend/default-configs/$hardware_type-latest.hardware.json" \
mkdir -p $HOME/PlanktoScope/scripts
directory="scripts/raspimjpeg"
cp -r "$repo_root/$directory" $HOME/PlanktoScope/$directory

# Set up the segmenter
# TODO: give forklift some way to make these directories ahead-of-time!
mkdir -p $HOME/device-backend-logs/processing/segmenter
mkdir -p $HOME/data/img
mkdir -p $HOME/data/export
20 changes: 20 additions & 0 deletions software/node-red-dashboard/default-configs/v2.6.config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"sample_project": "Project's name",
"sample_id": 1,
"sample_ship": "Vessel name",
"sample_operator": "Operator's name",
"sample_sampling_gear": "net",
"sample_gear_net_opening": 40,
"acq_id": 1,
"acq_instrument": "PlanktoScope v2.6",
"acq_celltype": 300,
"acq_minimum_mesh": 10,
"acq_maximum_mesh": 200,
"acq_volume": 1,
"object_depth_min": 1,
"object_depth_max": 2,
"process_id": 1,
"nb_frame": 100,
"sleep_before": 0.5,
"imaging_pump_volume": 0.01
}