This commit is contained in:
nuknal
2024-08-12 10:41:09 +08:00
parent 814d750f99
commit 7c1240f2db
2 changed files with 4 additions and 0 deletions

View File

@@ -30,3 +30,6 @@ clean:
linux:
GOOS=linux GOARCH=amd64 go build -o bin/sjy01-imgproc -ldflags=${COMPILE_LDFLAGS} cmd/*.go
release:
docker run --rm -v .:/src -v /Users/lan/workspace/sjy01/build/go:/build/go nuknal/gdal38-cv49-builder sh -c "cd /src && make linux"

View File

@@ -8,6 +8,7 @@ import (
)
// Destriping multisensor imagery with moment matching [Gadallah, 2000]
// 基于探元直方图匹配的CBERS01星CCD数据相对辐射校正方法 [潘志强, 2005]
func DoMomentMatching(originalImg gocv.Mat) {
probes := originalImg.Cols()
log.Printf("do moment matching for %d probes, %d rows", probes, originalImg.Rows())