Skip to content

Commit

Permalink
Add camera calibration functions + 90-degree rotations + doc fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
sjmgarnier committed Oct 25, 2023
1 parent 1ea3a77 commit 6549db8
Show file tree
Hide file tree
Showing 208 changed files with 1,445 additions and 226 deletions.
6 changes: 3 additions & 3 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Package: Rvision
Type: Package
Title: Computer Vision Library for R
Version: 0.7.0
Date: 2022-01-25
Version: 0.7.1
Date: 2023-10-25
Authors@R: c(
person("Simon", "Garnier", email = "[email protected]", role = c("aut", "cre"),
comment = c(ORCID = "0000-0002-3886-3974")),
Expand All @@ -28,7 +28,7 @@ RcppModules: class_Image, class_Capture, class_VideoWriter,
methods_Arithmetic, methods_Statistics, methods_Comparisons, methods_Logical,
methods_OpticalFlow, methods_Blob, methods_Morphology, methods_Filters,
methods_Display, methods_Draw, methods_Geometry, methods_Shape, methods_Transform,
methods_Feature, methods_Autothresh, methods_Ximgproc
methods_Feature, methods_Autothresh, methods_Ximgproc, methods_Calib3d
RoxygenNote: 7.2.3
Biarch: true
StagedInstall: false
Expand Down
7 changes: 7 additions & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ export(blur)
export(border)
export(boxFilter)
export(boxPoints)
export(calibrateCamera)
export(canny)
export(capacity)
export(cartToPolar)
Expand All @@ -111,6 +112,7 @@ export(connectedComponents)
export(contourArea)
export(convexHull)
export(convexityDefects)
export(cornerSubPix)
export(countNonZero)
export(destroyAllDisplays)
export(destroyDisplay)
Expand All @@ -133,7 +135,9 @@ export(farneback)
export(fillConvexPoly)
export(fillPoly)
export(filter2D)
export(findChessboardCorners)
export(findContours)
export(findHomography)
export(findNonZero)
export(findTransformECC)
export(findTransformORB)
Expand All @@ -147,6 +151,7 @@ export(full)
export(gaussianBlur)
export(getAffineTransform)
export(getGaborKernel)
export(getOptimalNewCameraMatrix)
export(getPerspectiveTransform)
export(getProp)
export(getStructuringElement)
Expand Down Expand Up @@ -221,6 +226,7 @@ export(reduce)
export(release)
export(reset)
export(resize)
export(rotate)
export(rotateScale)
export(scharr)
export(selectROI)
Expand All @@ -241,6 +247,7 @@ export(thinning)
export(threshold)
export(tile)
export(timelapse)
export(undistort)
export(video)
export(videoStack)
export(videoWriter)
Expand Down
Loading

0 comments on commit 6549db8

Please sign in to comment.