-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from openspim/dev
chore: update scifio according to dependabot
- Loading branch information
Showing
30 changed files
with
1,555 additions
and
765 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
package spim.hardware; | ||
|
||
import mmcorej.CMMCore; | ||
|
||
/** | ||
* Author: HongKee Moon ([email protected]), Scientific Computing Facility | ||
* Organization: MPI-CBG Dresden | ||
* Date: June 2023 | ||
*/ | ||
public class BaslerCamera extends Camera { | ||
static { | ||
Device.installFactory(new Device.Factory() { | ||
@Override | ||
public Device manufacture(CMMCore core, String label ) { | ||
return new BaslerCamera(core, label); | ||
} | ||
}, "BaslerCamera", SPIMSetup.SPIMDevice.CAMERA1, SPIMSetup.SPIMDevice.CAMERA2); | ||
} | ||
|
||
public BaslerCamera(CMMCore core, String label) { | ||
super(core, label); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
package spim.hardware; | ||
|
||
import mmcorej.CMMCore; | ||
|
||
/** | ||
* Author: HongKee Moon ([email protected]), Scientific Computing Facility | ||
* Organization: MPI-CBG Dresden | ||
* Date: May 2023 | ||
*/ | ||
public class TSICam extends Camera { | ||
static { | ||
Device.installFactory(new Device.Factory() { | ||
@Override | ||
public Device manufacture(CMMCore core, String label ) { | ||
return new TSICam(core, label); | ||
} | ||
}, "TSICam", SPIMSetup.SPIMDevice.CAMERA1, SPIMSetup.SPIMDevice.CAMERA2); | ||
} | ||
|
||
public TSICam(CMMCore core, String label) { | ||
super(core, label); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.