This file contains hidden or 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
| { | |
| "basics": { | |
| "name": "Arnav Rastogi", | |
| "image": "", | |
| "label": "Aspiring AI/ML Researcher and Game Developer", | |
| "email": "arnavrastogi.543@gmail.com", | |
| "phone": "+917905708817", | |
| "url": "https://arnav.rastogi.net.in/", | |
| "location": { | |
| "city": "Kanpur", |
This file contains hidden or 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
| /* Copyright: Copyright (C) 2024 Arnav Rastogi | |
| This program is free software: you can redistribute it and/or modify | |
| it under the terms of the GNU General Public License as published by | |
| the Free Software Foundation, version 3 of the License | |
| This program is distributed in the hope that it will be useful, | |
| but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| GNU General Public License for more details. |
This file contains hidden or 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
| #include <opencv2/opencv.hpp> | |
| #include <iostream> | |
| using namespace std; | |
| using namespace cv; | |
| int main() | |
| { | |
| // Read Image | |
| Mat curr_state = imread("test.jpg", IMREAD_GRAYSCALE); |
This file contains hidden or 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
| #pragma once | |
| #include <string> | |
| #include <chrono> | |
| #include <algorithm> | |
| #include <fstream> | |
| #include <thread> | |
| namespace ARC { | |
| struct SProfileResult | |
| { |