Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
N
November 2021 Blimp Competition
Manage
Activity
Members
Labels
Plan
Issues
2
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Shahrul Kamil bin Hassan
November 2021 Blimp Competition
Commits
6954e32b
Commit
6954e32b
authored
4 years ago
by
Zhiying Li
Browse files
Options
Downloads
Patches
Plain Diff
For ESP 32 CAM to load image thread into PyTorch Ball Detection File
parent
c7279be6
Branches
Branches containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Code/ESP32_Cam/ESP32-CAM_openCV/ESP32-CAM_openCV.ino
+94
-0
94 additions, 0 deletions
Code/ESP32_Cam/ESP32-CAM_openCV/ESP32-CAM_openCV.ino
with
94 additions
and
0 deletions
Code/ESP32_Cam/ESP32-CAM_openCV/ESP32-CAM_openCV.ino
0 → 100644
+
94
−
0
View file @
6954e32b
// https://how2electronics.com/color-detection-tracking-with-esp32-cam-opencv/
#include
<WebServer.h>
#include
<WiFi.h>
#include
<esp32cam.h>
const
char
*
WIFI_SSID
=
"lemur"
;
const
char
*
WIFI_PASS
=
"lemur9473"
;
WebServer
server
(
80
);
static
auto
loRes
=
esp32cam
::
Resolution
::
find
(
320
,
240
);
static
auto
midRes
=
esp32cam
::
Resolution
::
find
(
350
,
530
);
static
auto
hiRes
=
esp32cam
::
Resolution
::
find
(
800
,
600
);
void
serveJpg
()
{
auto
frame
=
esp32cam
::
capture
();
if
(
frame
==
nullptr
)
{
Serial
.
println
(
"CAPTURE FAIL"
);
server
.
send
(
503
,
""
,
""
);
return
;
}
Serial
.
printf
(
"CAPTURE OK %dx%d %db
\n
"
,
frame
->
getWidth
(),
frame
->
getHeight
(),
static_cast
<
int
>
(
frame
->
size
()));
server
.
setContentLength
(
frame
->
size
());
server
.
send
(
200
,
"image/jpeg"
);
WiFiClient
client
=
server
.
client
();
frame
->
writeTo
(
client
);
}
void
handleJpgLo
()
{
if
(
!
esp32cam
::
Camera
.
changeResolution
(
loRes
))
{
Serial
.
println
(
"SET-LO-RES FAIL"
);
}
serveJpg
();
}
void
handleJpgHi
()
{
if
(
!
esp32cam
::
Camera
.
changeResolution
(
hiRes
))
{
Serial
.
println
(
"SET-HI-RES FAIL"
);
}
serveJpg
();
}
void
handleJpgMid
()
{
if
(
!
esp32cam
::
Camera
.
changeResolution
(
midRes
))
{
Serial
.
println
(
"SET-MID-RES FAIL"
);
}
serveJpg
();
}
void
setup
(){
Serial
.
begin
(
115200
);
Serial
.
println
();
{
using
namespace
esp32cam
;
Config
cfg
;
cfg
.
setPins
(
pins
::
AiThinker
);
cfg
.
setResolution
(
hiRes
);
cfg
.
setBufferCount
(
2
);
cfg
.
setJpeg
(
80
);
bool
ok
=
Camera
.
begin
(
cfg
);
Serial
.
println
(
ok
?
"CAMERA OK"
:
"CAMERA FAIL"
);
}
WiFi
.
persistent
(
false
);
WiFi
.
mode
(
WIFI_STA
);
WiFi
.
begin
(
WIFI_SSID
,
WIFI_PASS
);
while
(
WiFi
.
status
()
!=
WL_CONNECTED
)
{
delay
(
500
);
}
Serial
.
print
(
"http://"
);
Serial
.
println
(
WiFi
.
localIP
());
Serial
.
println
(
" /cam-lo.jpg"
);
Serial
.
println
(
" /cam-hi.jpg"
);
Serial
.
println
(
" /cam-mid.jpg"
);
server
.
on
(
"/cam-lo.jpg"
,
handleJpgLo
);
server
.
on
(
"/cam-hi.jpg"
,
handleJpgHi
);
server
.
on
(
"/cam-mid.jpg"
,
handleJpgMid
);
server
.
begin
();
}
void
loop
()
{
server
.
handleClient
();
}
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment