Hi All,
Just starting out and reading up on using a Raspberry Pi and Libcamera-detect.
I might be asking the wrong question, but is there a list of the objects that can be detected as with reading the following;
“This application runs a preview window and monitors the contents using a Google MobileNet v1 SSD (Single Shot Detector) neural network that has been trained to identify about 80 classes of objects using the Coco dataset. It should recognise people, cars, cats and many other objects.”
https://github.com/raspberrypi/documentation/blob/develop/documentation/asciidoc/accessories/camera/libcamera_detect.adoc
The above states that some 80 ojects have been trained to be recognised.
What are they, is there a list somewhere?
Refer this :-
This has all the detection model maps that are pre-trained on the different datasets. Look up the one you want. There you will find all the desired labels.
Hi! Here is the list COCO - Common Objects in Context !
/**
* @license
* Copyright 2019 Google LLC. All Rights Reserved.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* =============================================================================
*/
export interface ObjectDetectionClass {
name: string;
This file has been truncated. show original
(from tensorflow/tfjs-models)
Cheers