Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update URLs to imagej.net #20

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/test/java/bvv/vistools/examples/Example01.java
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public class Example01
*/
public static void main( final String[] args )
{
final ImagePlus imp = IJ.openImage( "https://imagej.nih.gov/ij/images/t1-head.zip" );
final ImagePlus imp = IJ.openImage( "https://imagej.net/ij/images/t1-head.zip" );
final Img< UnsignedShortType > img = ImageJFunctions.wrapShort( imp );

final BvvSource source = BvvFunctions.show( img, "t1-head" );
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/bvv/vistools/examples/Example02.java
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public class Example02
*/
public static void main( final String[] args )
{
final ImagePlus imp = IJ.openImage( "https://imagej.nih.gov/ij/images/flybrain.zip" );
final ImagePlus imp = IJ.openImage( "https://imagej.net/ij/images/flybrain.zip" );
final Img< ARGBType > img = ImageJFunctions.wrapRGBA( imp );

// additional Bvv.options() to specify calibration
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/bvv/vistools/examples/Example03.java
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public class Example03
*/
public static void main( final String[] args )
{
final ImagePlus imp = IJ.openImage( "https://imagej.nih.gov/ij/images/Spindly-GFP.zip" );
final ImagePlus imp = IJ.openImage( "https://imagej.net/ij/images/Spindly-GFP.zip" );
final Img< UnsignedShortType > img = ImageJFunctions.wrapShort( imp );

final double pw = imp.getCalibration().pixelWidth;
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/bvv/vistools/examples/Example04.java
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public class Example04
*/
public static void main( final String[] args )
{
final ImagePlus imp = IJ.openImage( "https://imagej.nih.gov/ij/images/t1-head.zip" );
final ImagePlus imp = IJ.openImage( "https://imagej.net/ij/images/t1-head.zip" );
final Img< UnsignedShortType > img = ImageJFunctions.wrapShort( imp );

final BvvSource source1 = BvvFunctions.show( img, "t1-head" );
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/bvv/vistools/examples/Example06.java
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public class Example06
*/
public static void main( final String[] args )
{
final ImagePlus imp = IJ.openImage( "https://imagej.nih.gov/ij/images/flybrain.zip" );
final ImagePlus imp = IJ.openImage( "https://imagej.net/ij/images/flybrain.zip" );
final RandomAccessibleInterval< ARGBType > flybrain = ImageJFunctions.wrapRGBA( imp );

AffineTransform3D transform = new AffineTransform3D();
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/bvv/vistools/examples/Example07.java
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public class Example07
*/
public static void main( final String[] args )
{
final ImagePlus imp = IJ.openImage( "https://imagej.nih.gov/ij/images/t1-head.zip" );
final ImagePlus imp = IJ.openImage( "https://imagej.net/ij/images/t1-head.zip" );
final Img< UnsignedShortType > img = ImageJFunctions.wrapShort( imp );

final BvvSource source = BvvFunctions.show( img, "t1-head",
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/bvv/vistools/examples/ExampleBoxes.java
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public class ExampleBoxes
{
public static void main( final String[] args )
{
final ImagePlus imp = IJ.openImage( "https://imagej.nih.gov/ij/images/t1-head.zip" );
final ImagePlus imp = IJ.openImage( "https://imagej.net/ij/images/t1-head.zip" );
final Img< UnsignedShortType > img = ImageJFunctions.wrapShort( imp );

final BvvSource source = BvvFunctions.show( img, "t1-head",
Expand Down