cellUview 1.0.0
A real-time image processing and analysis suite for digital microscopy.
Loading...
Searching...
No Matches
cellUviewWelcome.h
1#ifndef CELLUVIEW_WELCOME_H
2#define CELLUVIEW_WELCOME_H
3#include <stdlib.h>
4#include <stdio.h>
5#include "iostream"
6
12 public:
13
14
15 static void welcomeMessage() {
16 printf(" ______ _______ __ __ __ __ ____ ____ __ ___________ __ ____ \n");
17 printf(" / || ____|| | | | | | | | \\ \\ / / | | | ____\\ \\ / \\ / / \n");
18 printf(" | ,----'| |__ | | | | | | | | \\ \\/ / | | | |__ \\ \\/ \\/ / \n");
19 printf(" | | | __| | | | | | | | | \\ / | | | __| \\ / \n");
20 printf(" | `----.| |____ | `----.| `----.| `--' | \\ / | | | |____ \\ /\\ / \n");
21 printf(" \\______||_______||_______||_______| \\______/ \\__/ |__| |_______| \\__/ \\__/ \n");
22
23 printf("Welcome to cellUview, a real time image processing and analysis suite for digital microscopy.\n");
24 }//note that the \ have been replaced with \\ to escape them. To regenerate go to https://patorjk.com/software/taag/#p=display&h=3&v=2&f=Epic&t=cellUview%2B
25};
26
27
28#endif //CELLUVIEW_WELCOME_H
Definition: cellUviewWelcome.h:11