/
SVCam Preprocessing Protocol

SVCam Preprocessing Protocol

https://github.com/precision-sustainable-ag/SemiF-Preprocessing/tree/feature/reimplementation

Pre-Requisites

  1. NCSU Unity ID and password

  2. Duo 2-Factor Authentication Enabled

    1. https://ncsu.service-now.com/sp?id=kb_article&sys_id=175315d7db8573802fa0791c8c961926

  3. Access to SUNNY

  4. An internet connection

  5. Cisco Secure Global Connect (NCSU’s VPN Client)

    1. https://ncsu.service-now.com/sp?id=kb_article_view&sys_kb_id=54b5a9f9470062182360891e436d4369

    2. https://ncsu.service-now.com/sp/en?id=kb_article&sys_id=73c7e352db5844d084129ac5db9619fe


Setting Up Your Machine

SSH Setup

PowerShell

  1. Open Windows PowerShell

  2. To enable SSH capabilities you will need administrator privileges. To run PowerShell as an administrator run the command Start-Process powershell -Verb RunAs in PowerShell

  3. In the window that opens run Start-Service sshd

    1. If an error occurs saying that the service does not exist run the command Add-WindowsCapability -Online -Name OpenSSH.Server~~~~0.0.1.0

    2. Then run Start-Service sshd

  4. We recommend running Set-Service -Name sshd -StartupType 'Automatic' to automatically start SSHD to make sure it stays enabled in the future

  5. Finally, run the following command to verify that the SSHD setup process automatically configured the firewall rule:

    1. if (!(Get-NetFirewallRule -Name "OpenSSH-Server-In-TCP" -ErrorAction SilentlyContinue | Select-Object Name, Enabled)) { Write-Output "Firewall Rule 'OpenSSH-Server-In-TCP' does not exist, creating it..." New-NetFirewallRule -Name 'OpenSSH-Server-In-TCP' -DisplayName 'OpenSSH Server (sshd)' -Enabled True -Direction Inbound -Protocol TCP -Action Allow -LocalPort 22 } else { Write-Output "Firewall rule 'OpenSSH-Server-In-TCP' has been created and exists." }
  6. You can now use ssh to setup remote connection to SUNNY in PowerShell

CommandPromptStart.png
Open Command Prompt
CommandPromptWindow.png
The Command Prompt Window
wingetPowerShell.png
Installing PowerShell
powershellsearch.png
Finding PowerShell

Visual Studio Code

  1. Install Visual Studio Code https://code.visualstudio.com/

  2. Install Remote-SSH Extension https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-ssh

Setup Remote Access to SUNNY

Login to NCSU’s VPN

  1. Open Cisco Secure Global Connect on your computer

  2. Type vpn.ncsu.edu into the blank field

  3. Click Connect

  4. Login to the VPN using your NCSU credentials

    1. login: <unityID>

    2. password: <password>

    3. second password: <method of 2-Factor Authentication>

      1. The default method is push and leaving the field blank or typing push will prompt the Duo Mobile App to send a request

      2. If you type sms, you will receive a code via text that is valid for 10 minutes

      3. If type code, the Duo Mobile App will generate a code that is valid for 30 seconds and can be seen by selecting the three vertical dots in the app

      4. For both sms and code once you receive the code, submit the login information again, but this time use the SMS code or Duo Code as the Second Password

desktophiddenicons.png
Find Cisco Secure Global Connect
ciscoclientvpn.png
Cisco Secure Global Connect
opening_the_vpn.png
NCSU VPN
login_to_vpn.png
Log In to VPN
DuoMobileConfirmation.png
Push request from Duo
DuoSMS.png
SMS request from Duo
DuoAppPasscode.png
One Time Passcode from Duo
verifybysms.png
Log in again using the SMS or One Time Passcode from Duo as Second Password

 

Set Up X11 Forwarding

  1. In PowerShell run winget install X410

https://x410.dev/cookbook/built-in-ssh-x11-forwarding-in-powershell-or-windows-command-prompt/

  1. run X410 by running the command x410.exe

  2. Now run $env:DISPLAY="127.0.0.1:0.0"

  3. Run echo $env:DISPLAY you should see 127.0.0.1:0.0

  4. You may also choose to make DISPLAY a permanent environment variable in your windows machine. To do so, run the command setx DISPLAY "127.0.0.1:0.0"

    1. After running setx you will need to close and reopen PowerShell

SSH into SUNNY

  1. Open PowerShell, Visual Studio Code, Sublime or other ssh-capable code editor

  2. In PowerShell run the command ssh -Y <unityID>@SUNNY.ece.ncsu.edu where <unityID> is your NCSU Unity ID

  3. Enter your password and hit Enter (Note: the characters you type will not show up in the console)

You can end your remote session without disconnecting from the VPN by typing exit and hitting Enter

logging_in_to_SUNNY.png
SSH into SUNNY
SSH_SUNNY_success.png
Successfully connected to SUNNY

Check your access to NFS Lockers

  1. Check that you have access to all of the storage lockers by running the following commands

    1. ls /mnt/research-projects/s/screberg/longterm_images

    2. ls /mnt/research-projects/s/screberg/longterm_images2

    3. ls /mnt/research-projects/s/screberg/GROW_DATA

    4. ls /mnt/research-projects/r/raatwell/longterm_images3

  2. If you do not have access to one or more of the lockers, contact mkutugata@ncsu.edu

longterm_images.png
longterm_images directory

 

longterm_images2.png
longterm_images2 directory

 

GROW_DATA.png
GROW_DATA directory
longterm_images3.png
longterm_images3 directory

Install miniconda on SUNNY

  1. Download miniconda by running wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh

  2. Install miniconda using the command bash ~/Miniconda3-latest-Linux-x86_64.sh

  3. Press Enter to review Anaconda’s Terms of Service (TOS).

  4. Then press and hold Enter to scroll (this will take a little while as the TOS is long)

  5. Once you see Please answer 'yes' or 'no':' Enter yes to agree to the TOS.

  6. Hit Enter to confirm the installation location to your home SUNNY folder

  7. Type yes to set up conda to automatically initialize whenever you open a new shell

  8. Run the command source ~/.bashrc to refresh your terminal and apply the new settings

  9. Test your installation by running conda list. If conda has been installed correctly, a list of installed packages appears.

usewget_MiniConda.png
installMiniconda_bash.png
installMiniconda_license.png
miniconda_acceptTOS.png
miniconda_acceptTOS_yes.png

 

 

 

 

 


All information that follows assumes that you are actively logged into SUNNY remotely using ssh. See Setting Up your Machine for instructions on how to do so.

Setting Up the Pipeline

Clone the GitHub repository

  1. In your remote SUNNY session, run the command git clone https://github.com/precision-sustainable-ag/SemiF-Preprocessing.git to clone the SemiF-Preprocessing repository to your SUNNY account

  2. To check if the repository was cloned, you can run the command ls to list everything in your current directory

Navigate to the Preprocessing Directory

  1. Use the command cd SemiF-Preprocessing to change directories

Set Up your conda environment in SUNNY

  1. Run the command conda env create -f ./environment.yaml

  2. Then run the command conda activate semif_prep

  3. Install PiDNG by running pip install git+https://github.com/schoolpost/PiDNG.git

  4. Manually install RawTherapee CLI by running the command scripts/validate_rawtherapee.sh.

  5. The conda environment you are in is shown in parentheses before your user <unityID>@sunny:

    1. For example, if the base environment is active it will appear as such: (base) <unityID>@sunny:

    2. If the semif_prep environment is active it will appear as (semif_prep) <unityID>@sunny:

  6. To change your active environment run the command conda activate <EnvironmentName>

    1. To update your environment after making changes to the environment.yaml file, run:

      conda env update --file environment.yaml


Running the Pipeline

  1. In your SUNNY session, change directories to SemiF-Preprocessing using the command cd SemiF-Preprocessing

  2. Make sure that semif_prep is the active conda environment by running conda activate semif_prep

  3. Edit conf/config.yaml by running nano conf/config.yaml

    1. batch_id: batch you want to preprocess

    2. tasks/copy_from_lockers: copy raw files from LTS to ./data/<lts_location>/semifield-upload/<batch_id> (comment out if already downloaded)

    3. tasks/raw2jpg: convert local raw files to jpegs stored in LTS: <lts_location>/semifield-developed-images/<batch_id>

    4. tasks/raw2png and tasks/png2jpg can be left commented out unless you need to run these separately

    5. raw2png/remove_raws: delete local raw files when each file is converted to pngs

    6. raw2jpg/remove_pngs: delete local png files when each png is converted to jpeg

  4. When you have finished editing, hit Ctrl and X at the same time

  5. Type Y to save the newly edited file

  6. Hit Enter to save the newly edited file as config.yaml

  7. Run the command python main.py to execute the main.py python script in the SemiF-Preprocessing directory

 

. ├── conf │   ├── ccm # config files to define color correction matrix (ccm) │   ├── config.yaml │   ├── hydra │   └── paths ├── data │   └── semifield-utils │   └── image_development │   ├── color_matrix # ccm files saved as numpy arrays │   └── dev_profiles # rawtherapee pp3 profile ├── main.py # main entry point for omegaconf ├── scripts │   └── validate_rawtherapee.sh # script to validate rawtherapee installation └── src ├── archive # archived code for future reference ├── raw2jpg.py # convert downloaded raw image to jpeg (raw2png + png2jpg processing) ├── png2jpg.py # convert png files to jpeg ├── raw2png.py # convert raw images to png └── utils ├── copy_from_lockers.py # copy raw files from NFS to local storage ├── calculate_ccm.py # utils to calculate and save ccm based on yaml config ├── debayer.py # demosaic image to manually record colorchecker values ├── preprocess.py # collection static methods for image preprocessing └── utils.py # common util functions
  • to end your ssh session type exit

 

Mobaxterm is a forwarding program - we dont need this for the svcam (we might need this TBD)

 

 

 

maybe get mobaxterm to view and validate images

 

 

 

 

try and run batch NC_2025-02-21

 

Need documentation on running the pipeline

  • be careful as lts is a shared long term storage, do not delete anything

Requirements:

Getting setup

  • cloning the repo

Running the pipeline

Manually inspecting images

Transferring data to LTS if images pass inspection

Creating issues in Github if images fail inspection

 

Related content