Skip to content

This repository uses a RGBD camera (Intel RealSense L515) to detect citrus crop on trees in the orchard. This is my final project for EE243: Advanced Computer Vision at UC Riverside in Spring 2021

License

Notifications You must be signed in to change notification settings

mepix/CitrusDetection

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Orange Detection

This project demonstrates an algorithm for using an RGB-D camera for detecting citrus fruit using a series of filters and clustering routines. This algorithm achieves a 34% detection rate while averaging a computer time of 30ms per frame.

Fruit Detection In action

Environment Setup

Dependencies

Dependencies are installed using brew:

# Intel Realsense Camera API
brew install librealsense

# OpenCV Library
brew install opencv

After installing the dependencies, the location of the linked libraries can be found:

pkg-config --cflags --libs realsense2
pkg-config --cflags --libs opencv

XCode Configuration

After the dependencies are installed, Xcode needs to be told where to find the libraries. This can be done by going to Build Settings then editing the following parameters:

  • Set Header Search Paths
  • Set Library Search Paths
  • Set Other Linker Flags

Note: packages installed by brew may not meet the requirements for a signed library as defined by Apple. This requirement can be overridden by going to: Build Settings then Signing & Validation and checking Disable Library Validation.

Algorithm Structure

The citrus detection pipeline involves several steps. First, the depth image is used to segment the foreground and background of the color image. Then, two color filters are applied to remove the leaves (BGR, green channel rejection) while preserving (HSV, hue channel retention). Next, the remaining color pixels are grouped with Euclidean clustering to create candidate fruit blobs. A Hough circle fitting process is then used to detect the center of each fruit from the blobs and then estimate the radius. Finally, an outlier rejection filter removes candidates that do not fit the profile of a citrus.

Citrus Detection Pipeline

Input Data

The dataset necessary for algorithm development was collected using an Intel RealSense L515 RGB-D sensor in citrus groves. The L515 was attached to an Apple laptop with a 3D printed mount. While there is no use comparing apples and oranges, this configuration was an effective setup for data collection. The RGB-D was recorded to a ROSBAG for off-line algorithm development using the Intel RealSense Viewer.

Lidar on Laptop

Running the Code

The software takes accepts the the following input arguments:

  1. Path to a ROSBAG
  2. Output save directory

If only the first argument is passed, no recording will be saved. If both the first and second arguments are passed, the output will be recorded automatically. If no arguments are passed, the code will run live using a connected RGB-D camera.

References

Intel Realsense Library

General

About

This repository uses a RGBD camera (Intel RealSense L515) to detect citrus crop on trees in the orchard. This is my final project for EE243: Advanced Computer Vision at UC Riverside in Spring 2021

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages