forked from RainaShapur/FTC2022-2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOpenCVExample.java
More file actions
320 lines (279 loc) · 13.3 KB
/
OpenCVExample.java
File metadata and controls
320 lines (279 loc) · 13.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
/*package org.firstinspires.ftc.teamcode;
import com.qualcomm.robotcore.eventloop.opmode.Autonomous;
import com.qualcomm.robotcore.eventloop.opmode.OpMode;
import org.firstinspires.ftc.robotcore.external.hardware.camera.WebcamName;
import org.opencv.core.Core;
import org.opencv.core.Mat;
import org.opencv.core.Rect;
import org.opencv.core.Scalar;
import org.opencv.imgproc.Imgproc;
import org.openftc.easyopencv.OpenCvCameraFactory;
import org.openftc.easyopencv.OpenCvCameraRotation;
import org.openftc.easyopencv.OpenCvPipeline;
import org.openftc.easyopencv.OpenCvWebcam;
import org.openftc.easyopencv.OpenCvCamera;
@Autonomous (name="OpenCVExample")
//@Disabled
public class OpenCVExample extends OpMode {
OpenCvWebcam webcam1 = null;
// init camera
@Override
public void init() {
WebcamName webcamName = hardwareMap.get(WebcamName.class, "webcam1");
int cameraMonitorViewId = hardwareMap.appContext.getResources().getIdentifier("cameraMonitorViewId", "id", hardwareMap.appContext.getPackageName());
webcam1 = OpenCvCameraFactory.getInstance().createWebcam(webcamName, cameraMonitorViewId);
webcam1.setPipeline(new examplePipeline());
webcam1.openCameraDeviceAsync(new OpenCvCamera.AsyncCameraOpenListener() {
public void onOpened() {
webcam1.startStreaming(640,360, OpenCvCameraRotation.UPRIGHT);
}
public void onError(int errorCode) {
}
});
}
//writing pipeline
@Override
public void loop() {
}
class examplePipeline extends OpenCvPipeline {
Mat yCBCr = new Mat ();
Mat leftCrop;
Mat rightCrop;
double leftavgfin;
double rightavgfin;
Mat outPut = new Mat ();
Scalar rectColor = new Scalar(255.0,0.0,0.0);
public Mat processframe (Mat input){
Imgproc.cvtColor(input,YCBCr,Imgproc.COLOR_RGB2YCrCb);
telemetry.addLine("pipeline running");
Rect leftRect = new Rect (0, 0, 0, 0);
Rect rightRect = new Rect (0, 0, 0, 0);
input.copyTo(outPut);
Imgproc.rectangle(outPut, leftRect, rectColor, 0);
Imgproc.rectangle(outPut, rightRect, rectColor, 0);
leftCrop =YCbCr.submat(leftRect);
rightCrop =YCbCr.submat(rightRect);
Core.extractChannel(leftCrop, leftCrop, 0);
Core.extractChannel(rightCrop, rightCrop, 0);
Scalar leftavg = Core.mean(leftCrop);
Scalar rightavg = Core.mean(rightCrop);
leftavgfin..cal[0];
rightavgfin..rightavg.cal[0];
if (leftavgfin > rightavgfin){
telemetry.addLine("Left");
}
else{
telemetry.addLine("Right");
}
return(outPut);
}
@Override
public Mat processFrame(Mat input) {
return null;
}
}
}
*/
/*
* Copyright (c) 2019 OpenFTC Team
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
package org.firstinspires.ftc.teamcode;
import com.qualcomm.robotcore.eventloop.opmode.LinearOpMode;
import com.qualcomm.robotcore.eventloop.opmode.Autonomous;
import org.firstinspires.ftc.robotcore.external.hardware.camera.WebcamName;
import org.opencv.core.Mat;
import org.opencv.core.Point;
import org.opencv.core.Scalar;
import org.opencv.imgproc.Imgproc;
import org.openftc.easyopencv.OpenCvCamera;
import org.openftc.easyopencv.OpenCvCameraFactory;
import org.openftc.easyopencv.OpenCvCameraRotation;
import org.openftc.easyopencv.OpenCvPipeline;
import org.openftc.easyopencv.OpenCvWebcam;
@Autonomous
public class OpenCVExample extends LinearOpMode
{
OpenCvWebcam webcam;
@Override
public void runOpMode()
{
int cameraMonitorViewId = hardwareMap.appContext.getResources().getIdentifier("cameraMonitorViewId", "id", hardwareMap.appContext.getPackageName());
webcam = OpenCvCameraFactory.getInstance().createWebcam(hardwareMap.get(WebcamName.class, "Webcam 1"), cameraMonitorViewId);
webcam.setPipeline(new SamplePipeline());
/*
* Open the connection to the camera device. New in v1.4.0 is the ability
* to open the camera asynchronously, and this is now the recommended way
* to do it. The benefits of opening async include faster init time, and
* better behavior when pressing stop during init (i.e. less of a chance
* of tripping the stuck watchdog)
*
* If you really want to open synchronously, the old method is still available.
*/
// webcam.setMillisecondsPermissionTimeout(2500); // Timeout for obtaining permission is configurable. Set before opening.
webcam.openCameraDeviceAsync(new OpenCvCamera.AsyncCameraOpenListener()
{
@Override
public void onOpened()
{
/*
* Tell the webcam to start streaming images to us! Note that you must make sure
* the resolution you specify is supported by the camera. If it is not, an exception
* will be thrown.
*
* Keep in mind that the SDK's UVC driver (what OpenCvWebcam uses under the hood) only
* supports streaming from the webcam in the uncompressed YUV image format. This means
* that the maximum resolution you can stream at and still get up to 30FPS is 480p (640x480).
* Streaming at e.g. 720p will limit you to up to 10FPS and so on and so forth.
*
* Also, we specify the rotation that the webcam is used in. This is so that the image
* from the camera sensor can be rotated such that it is always displayed with the image upright.
* For a front facing camera, rotation is defined assuming the user is looking at the screen.
* For a rear facing camera or a webcam, rotation is defined assuming the camera is facing
* away from the user.
*/
webcam.startStreaming(320, 240, OpenCvCameraRotation.UPRIGHT);
}
public void onError(int errorCode)
{
/*
* This will be called if the camera could not be opened
*/
}
});
telemetry.addLine("Waiting for start");
telemetry.update();
/*
* Wait for the user to press start on the Driver Station
*/
waitForStart();
while (opModeIsActive())
{
/*
* Send some stats to the telemetry
*/
telemetry.addData("Frame Count", webcam.getFrameCount());
telemetry.addData("FPS", String.format("%.2f", webcam.getFps()));
telemetry.addData("Total frame time ms", webcam.getTotalFrameTimeMs());
telemetry.addData("Pipeline time ms", webcam.getPipelineTimeMs());
telemetry.addData("Overhead time ms", webcam.getOverheadTimeMs());
telemetry.addData("Theoretical max FPS", webcam.getCurrentPipelineMaxFps());
telemetry.update();
/*
* NOTE: stopping the stream from the camera early (before the end of the OpMode
* when it will be automatically stopped for you) *IS* supported. The "if" statement
* below will stop streaming from the camera when the "A" button on gamepad 1 is pressed.
*/
if(gamepad1.a)
{
/*
* IMPORTANT NOTE: calling stopStreaming() will indeed stop the stream of images
* from the camera (and, by extension, stop calling your vision pipeline). HOWEVER,
* if the reason you wish to stop the stream early is to switch use of the camera
* over to, say, Vuforia or TFOD, you will also need to call closeCameraDevice()
* (commented out below), because according to the Android Camera API documentation:
* "Your application should only have one Camera object active at a time for
* a particular hardware camera."
*
* NB: calling closeCameraDevice() will internally call stopStreaming() if applicable,
* but it doesn't hurt to call it anyway, if for no other reason than clarity.
*
* NB2: if you are stopping the camera stream to simply save some processing power
* (or battery power) for a short while when you do not need your vision pipeline,
* it is recommended to NOT call closeCameraDevice() as you will then need to re-open
* it the next time you wish to activate your vision pipeline, which can take a bit of
* time. Of course, this comment is irrelevant in light of the use case described in
* the above "important note".
*/
webcam.stopStreaming();
//webcam.closeCameraDevice();
}
/*
* For the purposes of this sample, throttle ourselves to 10Hz loop to avoid burning
* excess CPU cycles for no reason. (By default, telemetry is only sent to the DS at 4Hz
* anyway). Of course in a real OpMode you will likely not want to do this.
*/
sleep(100);
}
}
/*
* An example image processing pipeline to be run upon receipt of each frame from the camera.
* Note that the processFrame() method is called serially from the frame worker thread -
* that is, a new camera frame will not come in while you're still processing a previous one.
* In other words, the processFrame() method will never be called multiple times simultaneously.
*
* However, the rendering of your processed image to the viewport is done in parallel to the
* frame worker thread. That is, the amount of time it takes to render the image to the
* viewport does NOT impact the amount of frames per second that your pipeline can process.
*
* IMPORTANT NOTE: this pipeline is NOT invoked on your OpMode thread. It is invoked on the
* frame worker thread. This should not be a problem in the vast majority of cases. However,
* if you're doing something weird where you do need it synchronized with your OpMode thread,
* then you will need to account for that accordingly.
*/
class SamplePipeline extends OpenCvPipeline
{
boolean viewportPaused;
/*
* NOTE: if you wish to use additional Mat objects in your processing pipeline, it is
* highly recommended to declare them here as instance variables and re-use them for
* each invocation of processFrame(), rather than declaring them as new local variables
* each time through processFrame(). This removes the danger of causing a memory leak
* by forgetting to call mat.release(), and it also reduces memory pressure by not
* constantly allocating and freeing large chunks of memory.
*/
@Override
public Mat processFrame(Mat input)
{
/*
* IMPORTANT NOTE: the input Mat that is passed in as a parameter to this method
* will only dereference to the same image for the duration of this particular
* invocation of this method. That is, if for some reason you'd like to save a copy
* of this particular frame for later use, you will need to either clone it or copy
* it to another Mat.
*/
/*
* Draw a simple box around the middle 1/2 of the entire frame
*/
Imgproc.rectangle(
input,
new Point(
input.cols()/4,
input.rows()/4),
new Point(
input.cols()*(3f/4f),
input.rows()*(3f/4f)),
new Scalar(0, 255, 0), 4);
return input;
}
@Override
public void onViewportTapped()
{
viewportPaused = !viewportPaused;
if(viewportPaused)
{
webcam.pauseViewport();
}
else
{
webcam.resumeViewport();
}
}
}
}