Unverified Commit f2d2d1cb authored by Kelvin Rodriguez's avatar Kelvin Rodriguez Committed by GitHub
Browse files

hicubenorm tests added (#4057)



* starting hirise tests

* added hirise tests

* removed old tests

* minor tweaks

* updated from comments

* now read only

* newlines

* Update main.cpp

Co-authored-by: default avatarStuart Sides <ssides@usgs.gov>
parent e5ebd679
Loading
Loading
Loading
Loading
+760 −0

File added.

Preview size limit exceeded, changes collapsed.

+12 −0
Original line number Diff line number Diff line
#ifndef hicubenorm_h 
#define hicubenorm_h

#include "Cube.h"
#include "UserInterface.h"

namespace Isis {
  extern void hicubenorm(Cube *cube, UserInterface &ui);
  extern void hicubenorm(UserInterface &ui);
}

#endif
+3 −750

File changed.

Preview size limit exceeded, changes collapsed.

+0 −4
Original line number Diff line number Diff line
BLANKS = "%-6s"    
LENGTH = "%-40s"

include $(ISISROOT)/make/isismake.tststree
+0 −12
Original line number Diff line number Diff line
APPNAME = hicubenorm

include $(ISISROOT)/make/isismake.tsts

commands:
	$(APPNAME) from= $(INPUT)/PSP_001331_2260_RED5_0.cub \
	to= $(OUTPUT)/PSP_001331_2260_RED5_0.avgFalse.cub \
	normalizer = average \
	mode = subtract \
	filter = 5 \
	preserve = true \
	pausecrop = false > /dev/null;
Loading