Skip to content

Commit c7cbbb7

Browse files
committed
Merge pull request #509 from Team537/local
Support opencv transpose
2 parents 9e5d577 + dbfadfa commit c7cbbb7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

buildSrc/src/main/java/edu/wpi/gripgenerator/FileParser.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,9 @@ public static Map<String, CompilationUnit> parseOpenCVCore(CompilationUnit coreD
241241
new DefinedMethod("min", false, "Mat", "Mat")
242242
.addDescription("Calculate the per-element minimum of two images."),
243243
new DefinedMethod("extractChannel", false, "Mat", "Mat")
244-
.addDescription("Extract a single channel from a image.")
244+
.addDescription("Extract a single channel from a image."),
245+
new DefinedMethod("transpose", false, "Mat", "Mat")
246+
.addDescription("Calculate the transpose of an image.")
245247
// new DefinedMethod("sqrt", false, "Mat", "Mat"),
246248
// new DefinedMethod("pow", false,
247249
// new DefinedParamType("Mat"),

0 commit comments

Comments
 (0)