builder
This commit is contained in:
3
Makefile
3
Makefile
@@ -30,3 +30,6 @@ clean:
|
|||||||
|
|
||||||
linux:
|
linux:
|
||||||
GOOS=linux GOARCH=amd64 go build -o bin/sjy01-imgproc -ldflags=${COMPILE_LDFLAGS} cmd/*.go
|
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"
|
||||||
|
|||||||
@@ -8,6 +8,7 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
// Destriping multisensor imagery with moment matching [Gadallah, 2000]
|
// Destriping multisensor imagery with moment matching [Gadallah, 2000]
|
||||||
|
// 基于探元直方图匹配的CBERS01星CCD数据相对辐射校正方法 [潘志强, 2005]
|
||||||
func DoMomentMatching(originalImg gocv.Mat) {
|
func DoMomentMatching(originalImg gocv.Mat) {
|
||||||
probes := originalImg.Cols()
|
probes := originalImg.Cols()
|
||||||
log.Printf("do moment matching for %d probes, %d rows", probes, originalImg.Rows())
|
log.Printf("do moment matching for %d probes, %d rows", probes, originalImg.Rows())
|
||||||
|
|||||||
Reference in New Issue
Block a user