cellects.gui.first_window
cellects.gui.first_window
First window of the Cellects graphical user interface (GUI).
This module implements the initial setup UI for Cellects data processing. It provides widgets for selecting image/video inputs, configuring folder paths, arena numbers, and prefixes/extensions. Threaded operations ensure UI responsiveness during background tasks.
Main Components FirstWindow : QWidget subclass implementing the first GUI window with tabs and interactive widgets
FirstWindow
Bases: MainTabsType
First window of the Cellects GUI.
Source code in src/cellects/gui/first_window.py
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 | |
Run_all_directly_is_clicked()
Run_all_directly_is_clicked
This method initiates a complete analysis process by starting the VideoTracking thread
for processing all arenas after ensuring no other relevant threads are currently running.
Notes
- This method ensures that the
LookForDataandVideoTrackingthreads are not running before initiating a new analysis. - The method updates the UI to indicate that an analysis has started and displays progress messages.
Source code in src/cellects/gui/first_window.py
__init__(parent, night_mode)
Initialize the First window with a parent widget and night mode setting.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
parent
|
QWidget
|
The parent widget to which this window will be attached. |
required |
night_mode
|
bool
|
A boolean indicating whether the night mode should be enabled. |
required |
Examples:
>>> from PySide6 import QtWidgets
>>> from cellects.gui.cellects import CellectsMainWidget
>>> from cellects.gui.first_window import FirstWindow
>>> import sys
>>> app = QtWidgets.QApplication([])
>>> parent = CellectsMainWidget()
>>> session = FirstWindow(parent, False)
>>> parent.insertWidget(0, session)
>>> parent.show()
>>> sys.exit(app.exec())
Source code in src/cellects/gui/first_window.py
advanced_parameters_is_clicked()
Handle the click event for switching to advanced parameters.
Checks if an Exif data reading thread is running and acts accordingly. If not, it updates the display for advanced parameters.
Notes
This function updates the display for advanced parameters only if no Exif data reading thread is running. If a thread is active, it informs the user to wait or restart Cellects.
Source code in src/cellects/gui/first_window.py
browse_is_clicked()
Handles the logic for when a "Browse" button is clicked in the interface.
Opens a file dialog to select a directory and updates the global pathway.
Notes
This function assumes that self.parent().po.all is a dictionary with a key 'global_pathway'.
Source code in src/cellects/gui/first_window.py
display_image_during_thread(dictionary)
Display an image and set a message during a thread operation.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
dictionary
|
dict
|
A dictionary containing the 'message' and 'current_image'. The message is a string to display. The current_image is the image data that will be displayed. |
required |
Source code in src/cellects/gui/first_window.py
display_message_from_thread(text_from_thread)
Updates the message displayed in the UI with text from a thread.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
text_from_thread
|
str
|
The text to be displayed in the UI message. |
required |
Source code in src/cellects/gui/first_window.py
first_im_read(greyscale)
Initialize the image analysis window and prepare for reading images.
Notes
This function prepares the image analysis window and sets it to be ready for reading images. It also ensures that certain tabs are set as not in use.
Source code in src/cellects/gui/first_window.py
full_screen_display(event)
Display an image in full screen.
Displays the current image_to_display of the parent window
in a separate full-screen window.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
event
|
QEvent
|
The event that triggers the full-screen display. |
required |
Other Parameters:
| Name | Type | Description |
|---|---|---|
popup_img |
FullScreenImage
|
The instance of |
Notes
The method creates a new instance of FullScreenImage and displays it.
This is intended to provide a full-screen view of the image currently
displayed in the parent window.
Source code in src/cellects/gui/first_window.py
im2vid()
Toggle between processing images or videos based on UI selection.
Source code in src/cellects/gui/first_window.py
load_data_quickly_finished(message)
Set up the UI components for a new one_experiment.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
message
|
str
|
The message to be displayed on the UI component. |
required |
Notes
This function sets several visibility flags and values for UI components in preparation for starting an one_experiment.
Source code in src/cellects/gui/first_window.py
next_is_clicked()
Handles the logic for when a "Next" button is clicked in the interface.
Checks if certain threads are running, updates parent object's attributes, and starts a data-looking thread if conditions are met.
Source code in src/cellects/gui/first_window.py
pathway_changed()
Method for handling pathway changes in the application.
This method performs several operations when a new global pathway is set: 1. Waits for any running thread to complete. 2. Updates the global pathway if a valid directory is found. 3. Changes the current working directory to the new global pathway. 4. Hides various widgets associated with advanced options and outputs. 5. Starts a background thread to load data quickly. 6. If the provided pathway is invalid, it hides relevant tabs and outputs an error message.
Notes
This method performs actions to prepare the application for loading data from a new pathway. It ensures that certain widgets are hidden and starts necessary background processes.
Source code in src/cellects/gui/first_window.py
re_instantiate_widgets()
Reinstantiate the videoanalysis window from the parent of the current window.
Source code in src/cellects/gui/first_window.py
required_outputs_is_clicked()
Handle the click event for switching to required outputs.
This function sets the last_is_first attribute of the parent to True
and changes the widget to the Required Outputs view.
Source code in src/cellects/gui/first_window.py
true_init()
Initialize the FirstWindow components and setup its layout.
Sets up various widgets, layouts, and threading components for the Cellects GUI, including image or video selection, folder path input, arena number management, and display setup.
Notes
This method assumes that the parent widget has a 'po' attribute with specific settings and variables.
Source code in src/cellects/gui/first_window.py
60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 | |
video_analysis_window_is_clicked()
Handles the logic for when the "Video tracking" button is clicked in the interface, leading to the video analysis window.
Notes
This function displays an error message when a thread relative to the current window is running. This function also save the id of the following window for later use.
Source code in src/cellects/gui/first_window.py
when_look_for_data_finished()
Check if there are any data items left in the selected folder and its sub-folders. Display appropriate error messages or proceed with further actions based on the data availability.
Notes
This function checks if there are any data items (images or videos) left in the selected folder and its sub-folders. If no data is found, it displays an error message. Otherwise, it proceeds with instantiating widgets or starting a thread.