Skip to content

Commit 02e305d

Browse files
Publish mmstudio/latest
1 parent 02b2297 commit 02e305d

File tree

3 files changed

+89
-2
lines changed

3 files changed

+89
-2
lines changed

index-all.html

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,16 @@ <h2 class="title">A</h2>
166166
<dd>
167167
<div class="block">Add the specified Images to the Album's datastore.</div>
168168
</dd>
169+
<dt><span class="memberNameLink"><a href="org/micromanager/Album.html#addImagesWithoutProcessing-java.util.Collection-">addImagesWithoutProcessing(Collection&lt;Image&gt;)</a></span> - Method in interface org.micromanager.<a href="org/micromanager/Album.html" title="interface in org.micromanager">Album</a></dt>
170+
<dd>
171+
<div class="block">Add the specified Images to the Album's datastore without passing them
172+
through the processor pipeline.</div>
173+
</dd>
174+
<dt><span class="memberNameLink"><a href="org/micromanager/Album.html#addImageWithoutProcessing-org.micromanager.data.Image-">addImageWithoutProcessing(Image)</a></span> - Method in interface org.micromanager.<a href="org/micromanager/Album.html" title="interface in org.micromanager">Album</a></dt>
175+
<dd>
176+
<div class="block">Add the specified Image to the Album's datastore without passing it
177+
through the processor pipeline.</div>
178+
</dd>
169179
<dt><span class="memberNameLink"><a href="org/micromanager/display/inspector/AbstractInspectorPanelController.html#addInspectorPanelListener-org.micromanager.display.inspector.InspectorPanelListener-">addInspectorPanelListener(InspectorPanelListener)</a></span> - Method in class org.micromanager.display.inspector.<a href="org/micromanager/display/inspector/AbstractInspectorPanelController.html" title="class in org.micromanager.display.inspector">AbstractInspectorPanelController</a></dt>
170180
<dd>&nbsp;</dd>
171181
<dt><span class="memberNameLink"><a href="org/micromanager/display/inspector/InspectorPanelController.html#addInspectorPanelListener-org.micromanager.display.inspector.InspectorPanelListener-">addInspectorPanelListener(InspectorPanelListener)</a></span> - Method in interface org.micromanager.display.inspector.<a href="org/micromanager/display/inspector/InspectorPanelController.html" title="interface in org.micromanager.display.inspector">InspectorPanelController</a></dt>

org/micromanager/Album.html

Lines changed: 65 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
catch(err) {
1818
}
1919
//-->
20-
var methods = {"i0":6,"i1":6,"i2":6};
20+
var methods = {"i0":6,"i1":6,"i2":6,"i3":6,"i4":6};
2121
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"]};
2222
var altColor = "altColor";
2323
var rowColor = "rowColor";
@@ -135,6 +135,20 @@ <h3>Method Summary</h3>
135135
</td>
136136
</tr>
137137
<tr id="i2" class="altColor">
138+
<td class="colFirst"><code>boolean</code></td>
139+
<td class="colLast"><code><span class="memberNameLink"><a href="../../org/micromanager/Album.html#addImagesWithoutProcessing-java.util.Collection-">addImagesWithoutProcessing</a></span>(java.util.Collection&lt;<a href="../../org/micromanager/data/Image.html" title="interface in org.micromanager.data">Image</a>&gt;&nbsp;images)</code>
140+
<div class="block">Add the specified Images to the Album's datastore without passing them
141+
through the processor pipeline.</div>
142+
</td>
143+
</tr>
144+
<tr id="i3" class="rowColor">
145+
<td class="colFirst"><code>boolean</code></td>
146+
<td class="colLast"><code><span class="memberNameLink"><a href="../../org/micromanager/Album.html#addImageWithoutProcessing-org.micromanager.data.Image-">addImageWithoutProcessing</a></span>(<a href="../../org/micromanager/data/Image.html" title="interface in org.micromanager.data">Image</a>&nbsp;image)</code>
147+
<div class="block">Add the specified Image to the Album's datastore without passing it
148+
through the processor pipeline.</div>
149+
</td>
150+
</tr>
151+
<tr id="i4" class="altColor">
138152
<td class="colFirst"><code><a href="../../org/micromanager/data/Datastore.html" title="interface in org.micromanager.data">Datastore</a></code></td>
139153
<td class="colLast"><code><span class="memberNameLink"><a href="../../org/micromanager/Album.html#getDatastore--">getDatastore</a></span>()</code>
140154
<div class="block">Return the Datastore that currently backs the Album.</div>
@@ -202,7 +216,7 @@ <h4>addImage</h4>
202216
<a name="addImages-java.util.Collection-">
203217
<!-- -->
204218
</a>
205-
<ul class="blockListLast">
219+
<ul class="blockList">
206220
<li class="blockList">
207221
<h4>addImages</h4>
208222
<pre>boolean&nbsp;addImages(java.util.Collection&lt;<a href="../../org/micromanager/data/Image.html" title="interface in org.micromanager.data">Image</a>&gt;&nbsp;images)
@@ -220,6 +234,55 @@ <h4>addImages</h4>
220234
</dl>
221235
</li>
222236
</ul>
237+
<a name="addImageWithoutProcessing-org.micromanager.data.Image-">
238+
<!-- -->
239+
</a>
240+
<ul class="blockList">
241+
<li class="blockList">
242+
<h4>addImageWithoutProcessing</h4>
243+
<pre>boolean&nbsp;addImageWithoutProcessing(<a href="../../org/micromanager/data/Image.html" title="interface in org.micromanager.data">Image</a>&nbsp;image)
244+
throws java.io.IOException</pre>
245+
<div class="block">Add the specified Image to the Album's datastore without passing it
246+
through the processor pipeline. If no Datastore exists for the Album yet,
247+
or if the current Datastore is frozen, or if the channel has changed,
248+
then a new Datastore will be created, as well as a new DisplayWindow to
249+
go with it, and future additions will be sent to that Datastore.
250+
The channel name used for the image will be the current channel (i.e. the
251+
config setting for the config group set as the channel group), or "" if
252+
it does not exist.</div>
253+
<dl>
254+
<dt><span class="paramLabel">Parameters:</span></dt>
255+
<dd><code>image</code> - The Image to add to the album</dd>
256+
<dt><span class="returnLabel">Returns:</span></dt>
257+
<dd>True if a new Datastore and DisplayWindow were created as a
258+
side-effect of adding the image.</dd>
259+
<dt><span class="throwsLabel">Throws:</span></dt>
260+
<dd><code>java.io.IOException</code> - these happen with disk-based stores</dd>
261+
</dl>
262+
</li>
263+
</ul>
264+
<a name="addImagesWithoutProcessing-java.util.Collection-">
265+
<!-- -->
266+
</a>
267+
<ul class="blockListLast">
268+
<li class="blockList">
269+
<h4>addImagesWithoutProcessing</h4>
270+
<pre>boolean&nbsp;addImagesWithoutProcessing(java.util.Collection&lt;<a href="../../org/micromanager/data/Image.html" title="interface in org.micromanager.data">Image</a>&gt;&nbsp;images)
271+
throws java.io.IOException</pre>
272+
<div class="block">Add the specified Images to the Album's datastore without passing them
273+
through the processor pipeline. Equivalent to repeatedly calling
274+
addImageWithoutProcessing().</div>
275+
<dl>
276+
<dt><span class="paramLabel">Parameters:</span></dt>
277+
<dd><code>images</code> - The Images to add to the album</dd>
278+
<dt><span class="returnLabel">Returns:</span></dt>
279+
<dd>True if a new Datastore and DisplayWindow were created as a
280+
side-effect of adding the images.</dd>
281+
<dt><span class="throwsLabel">Throws:</span></dt>
282+
<dd><code>java.io.IOException</code> - these happen with disk-based stores</dd>
283+
</dl>
284+
</li>
285+
</ul>
223286
</li>
224287
</ul>
225288
</li>

org/micromanager/data/class-use/Image.html

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,13 @@ <h3>Uses of <a href="../../../../org/micromanager/data/Image.html" title="interf
150150
</td>
151151
</tr>
152152
<tr class="rowColor">
153+
<td class="colFirst"><code>boolean</code></td>
154+
<td class="colLast"><span class="typeNameLabel">Album.</span><code><span class="memberNameLink"><a href="../../../../org/micromanager/Album.html#addImageWithoutProcessing-org.micromanager.data.Image-">addImageWithoutProcessing</a></span>(<a href="../../../../org/micromanager/data/Image.html" title="interface in org.micromanager.data">Image</a>&nbsp;image)</code>
155+
<div class="block">Add the specified Image to the Album's datastore without passing it
156+
through the processor pipeline.</div>
157+
</td>
158+
</tr>
159+
<tr class="altColor">
153160
<td class="colFirst"><code>void</code></td>
154161
<td class="colLast"><span class="typeNameLabel">SnapLiveManager.</span><code><span class="memberNameLink"><a href="../../../../org/micromanager/SnapLiveManager.html#displayImage-org.micromanager.data.Image-">displayImage</a></span>(<a href="../../../../org/micromanager/data/Image.html" title="interface in org.micromanager.data">Image</a>&nbsp;image)</code>
155162
<div class="block">Insert the provided image into the Datastore, causing it to be displayed
@@ -171,6 +178,13 @@ <h3>Uses of <a href="../../../../org/micromanager/data/Image.html" title="interf
171178
<div class="block">Add the specified Images to the Album's datastore.</div>
172179
</td>
173180
</tr>
181+
<tr class="rowColor">
182+
<td class="colFirst"><code>boolean</code></td>
183+
<td class="colLast"><span class="typeNameLabel">Album.</span><code><span class="memberNameLink"><a href="../../../../org/micromanager/Album.html#addImagesWithoutProcessing-java.util.Collection-">addImagesWithoutProcessing</a></span>(java.util.Collection&lt;<a href="../../../../org/micromanager/data/Image.html" title="interface in org.micromanager.data">Image</a>&gt;&nbsp;images)</code>
184+
<div class="block">Add the specified Images to the Album's datastore without passing them
185+
through the processor pipeline.</div>
186+
</td>
187+
</tr>
174188
</tbody>
175189
</table>
176190
</li>

0 commit comments

Comments
 (0)