Skip to content

Commit 642a57c

Browse files
committed
Created v1.3 of LOTUS toolbox with .bin reading capabilities and corrected some bugs
1 parent 948151a commit 642a57c

File tree

5 files changed

+8
-7
lines changed

5 files changed

+8
-7
lines changed

LOTUS/LOTUS_UserGuide.pdf

276 KB
Binary file not shown.

LOTUS/LOTUS_v1_2_installer.exe

-7.68 MB
Binary file not shown.

LOTUS/LOTUS_welcome.png

-17.2 KB
Binary file not shown.

LOTUS/Readme.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
### LOTUS : An accompanying toolbox for the article "OPEN PLATFORM FOR ULTRASOUND LOCALIZATION MICROSCOPY: PERFORMANCE ASSESSMENT OF LOCALIZATION ALGORITHMS"
1+
### LOTUS : An accompanying toolbox for the article "OPEN PLATFORM FOR ULTRASOUND LOCALIZATION MICROSCOPY: PERFORMANCE ASSESSMENT OF LOCALIZATION ALGORITHMS
22
[![Generic badge](https://img.shields.io/badge/NBME-10.1038/s41551021008248-red.svg)](https://doi.org/10.1038/s41551-021-00824-8)
33
![License: CC BY-NC-SA 4.0](https://img.shields.io/badge/License-CC%20BY--NC--SA%204.0-lightgrey.svg)
44
[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.4343435.svg)](https://doi.org/10.5281/zenodo.4343435)
55

66
<p align="center">
7-
<img src="https://github.com/AChavignon/PALA/blob/master/LOTUS/LOTUS_welcome.png" width="400">
7+
<img src="https://github.com/AChavignon/PALA/blob/master/LOTUS/splashscreen.png" width="400">
88
</p>
99

10-
###### DATE 2022.01.31-VERSION 1.2
10+
###### DATE 2023.12.-VERSION 1.3
1111
**AUTHORS: Baptiste Heiles, Arthur Chavignon, CNRS, Sorbonne Universite, INSERM.**
1212
Directed by: Olivier Couture, Research Director CNRS, Sorbonne Universite, INSERM
1313
Laboratoire d'Imagerie Biomedicale, Team PPM. 15 rue de l'Ecole de Medecine, 75006, Paris
@@ -36,7 +36,7 @@ LOTUS software integrates MATLAB Runtime R2021a (9.10) (MathWorks). We recommend
3636

3737
#### 2. INSTALLATION
3838

39-
1) Launch the installer `LOTUS_v1_2_installer.exe`
39+
1) Launch the installer `LOTUS_v1_3.exe`
4040
2) Follow the installers' instructions
4141
3) Restart your computer
4242
4) LOTUS should be now available for use in the start-up menu

PALA/PALA_scripts/PALA_SetUpPaths.m

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,13 @@
1515
clear all;close('all')
1616

1717
% DEFINE THE ADDONS DIRECTORY ON YOUR COMPUTER
18+
cd ./..
1819

19-
PALA_addons_folder = 'D:\PALA_test\PALA'; % location of the addons folder
20-
20+
PALA_addons_folder = [cd]; % location of the addons folder
21+
cd('PALA_scripts');
2122
% DEFINE THE DATA DIRECTORY ON YOUR COMPUTER
2223

23-
PALA_data_folder = 'D:\PALA_test\';
24+
% PALA_data_folder = 'D:\PALA_test\';
2425

2526
addpath(genpath(PALA_addons_folder))
2627

0 commit comments

Comments
 (0)