Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
ptahmose committed Oct 4, 2024
1 parent 1875800 commit 9276803
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
cmake_minimum_required (VERSION 3.11)

set(MEXCZI_MAJOR 0)
set(MEXCZI_MINOR 1)
set(MEXCZI_PATCH 5)
set(MEXCZI_MINOR 2)
set(MEXCZI_PATCH 0)
set(MEXCZI_EXT "alpha")

if(WIN32)
Expand All @@ -17,7 +17,7 @@ endif(WIN32)

set (CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/modules" ${CMAKE_MODULE_PATH})

project ("MEXCZI")
project ("MEXlibCZI")

# include RapidJSON -> https://www.jibbow.com/posts/rapidjson-cmake/
include("${CMAKE_SOURCE_DIR}/modules/rapidJSON.cmake")
Expand Down
18 changes: 9 additions & 9 deletions doc/commands.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ The following commands are available in the mex file.
| [GetMultiChannelScalingTileComposite](#getmultichannelscalingtilecomposite) | Get a multi-channel composite image from the specified axis-aligned ROI with the specified zoom. |
| [GetSingleChannelScalingTileComposite](#getsinglechannelscalingtilecomposite) | Get a tile-composite for the specified region-of-interest for the specified plane with the specified zoom-factor. |
| [GetMetadataXml](#getmetadataxml) | Get the metadata of the specified CZI-document as an XML string. |
| [GetDefaultDisplaySettings](#getdefaultdisplaysettings) | |
| [GetSubBlock](#getsubblock) | |
| [GetInfoFromSubBlock](#getinfofromsubblock) | |
| [GetBitmapFromSubBlock](#getbitmapfromsubblock) | |
| [GetMetadataFromSubBlock](#getmetadatafromsubblock) | |
| [ReleaseSubBlock](#releasesubblock) | |
| [CreateCziWriter](#createcziwriter) | |
| [AddSubBlock](#addsubblock) | |
| [CloseCziWriter](#closecziwriter) | |
| [GetDefaultDisplaySettings](#getdefaultdisplaysettings) | Get the display-settings from the CZI-document. |
| [GetSubBlock](#getsubblock) | Get a handle to a subblock (and return a handle to it). |
| [GetInfoFromSubBlock](#getinfofromsubblock) | Get information about a subblock. |
| [GetBitmapFromSubBlock](#getbitmapfromsubblock) | Get the bitmap of a subblock. |
| [GetMetadataFromSubBlock](#getmetadatafromsubblock) | Get the metadata from a subblock. |
| [ReleaseSubBlock](#releasesubblock) | Releases a handle for a subblock. |
| [CreateCziWriter](#createcziwriter) | Creates a writer object (for writing a CZI document) and returns a handle to it. |
| [AddSubBlock](#addsubblock) | Adds a subblock to the writer object.|
| [CloseCziWriter](#closecziwriter) | Closes a writer object and finalizes the CZI-document. |

## GetVersion

Expand Down
2 changes: 1 addition & 1 deletion notes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ MEXlibCZI('CloseCziWriter', h)




cd D:\dev\MyGitHub\MEXlibCZI\out\build\x64-Debug\MEXlibCZI

image1 = imread('D:\OneDrive\jbohl\OneDrive\Bilder\SamplePictures\Chrysanthemum.jpg');
image2 = imread('D:\OneDrive\jbohl\OneDrive\Bilder\SamplePictures\Desert.jpg');
Expand Down

0 comments on commit 9276803

Please sign in to comment.