Skip to content

Commit

Permalink
- Added Number of Frames
Browse files Browse the repository at this point in the history
- Update to 0.7
  • Loading branch information
bastiao committed Sep 18, 2015
1 parent 16fa75a commit 8d2f4f8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>pt.ua.ieeta</groupId>
<artifactId>Dicoogle-Java</artifactId>
<version>0.7-SNAPSHOT</version>
<version>0.7</version>
<packaging>jar</packaging>

<name>Dicoogle-Java</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -300,6 +300,7 @@ private void parseImageLevel(String response){
List<String> attributes = new ArrayList<String>();
attributes.add("ViewPosition");
attributes.add("InstanceNumber");
attributes.add("NumberOfFrames");

DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
DocumentBuilder docBuilder = null;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ public void testSearchAdv()
System.out.println(img);
System.out.println(img.getTag("ViewPosition"));
System.out.println(img.getTag("InstanceNumber"));
System.out.println(img.getTag("NumberOfFrames"));
}
}

Expand All @@ -97,7 +98,7 @@ public void testDump()
DicoogleClient client = new DicoogleClient("http://localhost:6060/");
for (int i = 0 ; i< NUMBER_OF_EXECUTIONS ; i++)
{
System.out.println(client.dump("0.0.0.0.1.8811.2.1.20010413115754.12432"));
//System.out.println(client.dump("0.0.0.0.1.8811.2.1.20010413115754.12432"));
}


Expand Down

0 comments on commit 8d2f4f8

Please sign in to comment.