1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
|
###############################################################################
# pytest_createreference.py: Create a reference image
# Author(s): Pieter.Kempeneers@ec.europa.eu
# Copyright (c) 2016-2019 European Union (Joint Research Centre)
# License EUPLv1.2
#
# This file is part of jiplib
###############################################################################
# History
# 2017/10/24 - Created by Pieter Kempeneers (pieter.kempeneers@ec.europa.eu)
# Change log
import argparse
import jiplib as jl
parser=argparse.ArgumentParser()
parser.add_argument("-nrow","--nrow",help="Number of rows",dest="nrow",required=False,type=int,default=1024)
parser.add_argument("-ncol","--ncol",help="Number of cols",dest="ncol",required=False,type=int,default=1024)
parser.add_argument("-min","--min",help="min value for pixel values",dest="min",required=False,type=float,default=1000)
parser.add_argument("-max","--max",help="max value for pixel values",dest="max",required=False,type=float,default=2000)
args = parser.parse_args()
ULX=600000.0
ULY=4000020.0
LRX=709800.0
LRY=3890220.0
projection='epsg:32612'
dict={'ulx':ULX,'uly':ULY,'lrx':LRX,'lry':LRY,'a_srs':projection}
dict.update({'nrow':args.nrow,'ncol':args.ncol})
dict.update({'uniform':[args.min,args.max+1]})
dict.update({'otype':'GDT_UInt16'})
dict.update({'seed':10915})
try:
jim0=jl.createJim(**dict)
#create a reference
jim1=jim0
jim0.d_pointOpBlank(500)
print(jim0)
if not jim1.isEqual(jim0):
print("Failed: isEqual")
throw()
theStats0=jim0.getStats({'function':['max']})
theStats1=jim1.getStats({'function':['max']})
jim0=None
if theStats0['max']!=500:
print("Failed: jim0 max")
throw()
else:
print("theStats0: ",theStats0)
print("debug5")
if theStats1['max']!=500:
print("Failed: jim1 max")
throw()
else:
print("theStats1: ",theStats1)
print("Success: Create a reference image")
except:
print("Failed: Create a reference image")
jim1.close()
|