Skip to content

Commit ea1cb14

Browse files
committed
algorithms & ds - (c++ libraries)
1 parent 98df26d commit ea1cb14

File tree

3 files changed

+1
-8
lines changed

3 files changed

+1
-8
lines changed

competitive_prog/README.MD

+1-1
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ int main() {
304304

305305
</table>
306306

307-
resources : [[code](./code/)] & /[cpp competitive ref](./cp/) | [[cpp doc](./doc/)] [CMake tutorial](https://www.youtube.com/watch?v=nlKcXPUJGwA&list=PLalVdRk2RC6o5GHu618ARWh0VO0bFlif4) [[How to Properly Setup C++ Projects](https://youtu.be/5glH8dGoeCA?si=nkwRWgvsitERl3L9)] [[Making and Working with Libraries in C++](https://youtu.be/Wt4dxDNmDA8?si=eBW6m8PqW0slulwi)] [[C++](https://www.youtube.com/watch?v=18c3MTX0PK0&list=PLlrATfBNZ98dudnM48yfGUldqGD0S4FFb)]
307+
resources : [ /[cpp competitive ref](./cp/) | [[cpp doc](./doc/)] [CMake tutorial](https://www.youtube.com/watch?v=nlKcXPUJGwA&list=PLalVdRk2RC6o5GHu618ARWh0VO0bFlif4) [[How to Properly Setup C++ Projects](https://youtu.be/5glH8dGoeCA?si=nkwRWgvsitERl3L9)] [[Making and Working with Libraries in C++](https://youtu.be/Wt4dxDNmDA8?si=eBW6m8PqW0slulwi)] [[C++](https://www.youtube.com/watch?v=18c3MTX0PK0&list=PLlrATfBNZ98dudnM48yfGUldqGD0S4FFb)]
308308

309309
<img src="img/stdio.png" width=48%> <img src="img/stdio2.png" width=48%>
310310

File renamed without changes.

competitive_prog/doc/opencv.MD

-7
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,6 @@ const Mat& img);
9393
cv:: imwrite("copy.jpg", image);
9494
return 0;
9595
}
96-
9796
```
9897
Write float images to *.exr files. These files will store and read values as is without losing precision. Float images I/O example:
9998
@@ -112,7 +111,6 @@ Write float images to *.exr files. These files will store and read values as is
112111
std :: cout << copy.at <float >(5, 5) << std :: endl;
113112
return 0;
114113
}
115-
116114
```
117115

118116

@@ -143,8 +141,6 @@ Write float images to *.exr files. These files will store and read values as is
143141
cv:: waitKey (); // Don't close window instantly.
144142
return 0;
145143
}
146-
147-
148144
```
149145
</td>
150146
<td>
@@ -187,8 +183,6 @@ Popular features: illumination, rotation and translation invariant (to some degr
187183
// extract the SIFT descriptors
188184
auto extractor = SiftDescriptorExtractor :: create ();
189185
extractor ->compute(input , keypoints , descriptors );
190-
191-
192186
```
193187
194188
### FLANN: Fast Library for Approximate
@@ -206,5 +200,4 @@ Nearest Neighbors : build K-d tree, search for neighbors there:
206200
Mat nearest_vector_dist (1, k, DataType <float >:: type);
207201
kdtree. knnSearch (query , nearest_vector_idx ,
208202
nearest_vector_dist , k);
209-
210203
```

0 commit comments

Comments
 (0)