-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
14,078 additions
and
104 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
# Project # 1 Wifi Controlled Robot | ||
|
||
|
||
# Project # 2 Line Following Robot | ||
# Project # 3 | ||
- Camera not working properly | ||
- Once that is done , install crow for websharing camera for image processing |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#ifndef CAMERA_CONTROLLER_HPP | ||
#define CAMERA_CONTROLLER_HPP | ||
|
||
#include <opencv2/opencv.hpp> | ||
#include <string> | ||
|
||
class CameraController { | ||
public: | ||
CameraController(); | ||
~CameraController(); | ||
void recordVideo(int timeSecs, const std::string& name); | ||
void captureImage(const std::string& name); | ||
void startStreaming(); | ||
private: | ||
cv::VideoCapture cap; | ||
}; | ||
|
||
#endif // CAMERA_CONTROLLER_HPP |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#pragma once | ||
#include "crow/query_string.h" | ||
#include "crow/http_parser_merged.h" | ||
#include "crow/ci_map.h" | ||
#include "crow/TinySHA1.hpp" | ||
#include "crow/settings.h" | ||
#include "crow/socket_adaptors.h" | ||
#include "crow/json.h" | ||
#include "crow/mustache.h" | ||
#include "crow/logging.h" | ||
#include "crow/task_timer.h" | ||
#include "crow/utility.h" | ||
#include "crow/common.h" | ||
#include "crow/http_request.h" | ||
#include "crow/websocket.h" | ||
#include "crow/parser.h" | ||
#include "crow/http_response.h" | ||
#include "crow/multipart.h" | ||
#include "crow/routing.h" | ||
#include "crow/middleware.h" | ||
#include "crow/middleware_context.h" | ||
#include "crow/compression.h" | ||
#include "crow/http_connection.h" | ||
#include "crow/http_server.h" | ||
#include "crow/app.h" |
Oops, something went wrong.