Skip to content

Commit 3dcd1b5

Browse files
committed
Updated .gitignore
2 parents 3169b56 + 93daa3d commit 3dcd1b5

File tree

2 files changed

+17
-11
lines changed

2 files changed

+17
-11
lines changed

CodeCapture/CodeCapture/README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
The application consists of the various Content Pages that the user sees when they use the app. The details and purpose of each page that the user will come across as well as the flow in which these pages will occur has been documented below.
44

5-
You can check out the [demo video](https://drive.google.com/file/d/1Dso3XfNttYl8mPMorpG0CSG9iAkEF5rS/view?usp=sharing) of the app as well.
5+
You can check out the [demo video](https://onedrive.live.com/embed?cid=703B19A0781C4859&resid=703B19A0781C4859%21152&authkey=AK5y1O1E3EKQbzg) of the app as well.
66

77
## 1. Entering the App
88

9-
![MainPage](https://upload.wikimedia.org/wikipedia/commons/thumb/1/17/MainPage.jpg/216px-MainPage.jpg)
9+
![MainPage](https://upload.wikimedia.org/wikipedia/commons/thumb/1/17/MainPage.jpg/280px-MainPage.jpg)
1010

1111
* Page: MainPage.xaml
1212
* Code: MainPage.xaml.cs
@@ -15,7 +15,7 @@ The **MainPage.xaml** page is the first page that a user will see when they star
1515

1616
## 2. Capturing An Image
1717

18-
![ImageCapture](https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/ImageCapture.jpg/216px-ImageCapture.jpg)
18+
![ImageCapture](https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/ImageCapture.jpg/280px-ImageCapture.jpg)
1919

2020
* Page: ImageCapture.xaml
2121
* Code: ImageCapture.xaml.cs
@@ -24,7 +24,7 @@ The **ImageCapture.xaml** page is where the user will capture (click or select)
2424

2525
## 3. Extracting The Code
2626

27-
![ExtractText](https://upload.wikimedia.org/wikipedia/commons/thumb/e/e0/ExtractText.jpg/216px-ExtractText.jpg)
27+
![ExtractText](https://upload.wikimedia.org/wikipedia/commons/thumb/e/e0/ExtractText.jpg/280px-ExtractText.jpg)
2828

2929
* Page: ExtractText.xaml
3030
* Code: ExtractText.xaml.cs
@@ -33,16 +33,16 @@ The **ExtractText.xaml** page is where the code extracted from the image using t
3333

3434
## 4. Compiling The Code And Displaying Output
3535

36-
![CompileCode](https://upload.wikimedia.org/wikipedia/commons/thumb/e/e4/CompileCode.jpg/216px-CompileCode.jpg)
36+
![CompileCode](https://upload.wikimedia.org/wikipedia/commons/thumb/e/e4/CompileCode.jpg/280px-CompileCode.jpg)
3737

3838
* Page: CompileCode.xaml
3939
* Code: CompileCode.xaml.cs
4040

4141
The **CompileCode.xaml** page is where the result of the code is returned by the **JDoodle Compiler API**. In case there are any errors in the code. Those shall be displayed here as well.
4242

43-
## Emailing The Result
43+
## 5. Emailing The Result
4444

45-
![EmailResult](https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/EmailResult.jpg/216px-EmailResult.jpg)
45+
![EmailResult](https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/EmailResult.jpg/280px-EmailResult.jpg)
4646

4747
* Page: EmailResult.xaml
4848
* Code: EmailResult.xaml.cs

README.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
**CodeCapture** is a Xamarin.Forms application that captures (clicks using the device Camera or selects from the device storage) a picture of hand-written/printed code (Java, C++, Python, or JavaScript), extracts the text from it using the Azure Computer Vision Read API, compiles it and returns the result using the JDoodle Compiler API, and allows the user to email the code, standard input, and result to any email address of their preference.
99

1010

11-
* Check out the [demo video](https://drive.google.com/file/d/1Dso3XfNttYl8mPMorpG0CSG9iAkEF5rS/view?usp=sharing)
11+
* Check out the [demo video](https://onedrive.live.com/embed?cid=703B19A0781C4859&resid=703B19A0781C4859%21152&authkey=AK5y1O1E3EKQbzg)
1212

1313
* Download the [Android APK](https://github.com/adityaoberai/CodeCapture/releases/tag/v1.0-beta) *(for testing)*
1414

@@ -37,7 +37,7 @@ The following **NuGet** packages are necessary to build and run this project:
3737

3838
## Steps To Run
3939

40-
Please follow the following steps to run the project in **Visual Studio 2019**
40+
Please follow the following steps to run the project in **Visual Studio Community 2019**
4141

4242
1. Clone the repository to a location of your preference
4343

@@ -59,14 +59,20 @@ Please follow the following steps to run the project in **Visual Studio 2019**
5959

6060
*Note: Since we have the **Secrets.cs** file, you will not need to create an Environment Variable (as specified in the Quickstart) separately*
6161

62-
If you are a **full-time student**, you can avail the [Azure For Students](https://aka.ms/a4s) offer and receive **$100 worth of Azure credits** as well as various free developer tools
62+
If you are a **student at an accredited higher education institution**, you can avail the [Azure For Students](https://aka.ms/a4s) offer and receive **$100 worth of Azure credits** as well as various free developer tools. The **Free Tier** of the **Azure Computer Vision resource** that I have used here offers **5000 free transactions per month** at a maximum rate of **20 transactions per minute**.
6363

6464
* In order to set up your **free credentials** for the **JDoodle Compiler API**, please visit the following link: [Compiler API](https://www.jdoodle.com/compiler-api/)
6565

6666
You can view the [JDoodle Compiler API Documentation](https://docs.jdoodle.com/compiler-api/compiler-api) to understand how the API works so that you can tweak the app for your personal purposes too
6767

68+
All Jdoodle account holders subscribed to the **Free Plan** can execute **upto 200 API Calls per day** to the **JDoodle Compile API**.
69+
6870
## User Interface of the Application
6971

72+
| ![MainPage](https://upload.wikimedia.org/wikipedia/commons/thumb/1/17/MainPage.jpg/280px-MainPage.jpg) | ![ImageCapture](https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/ImageCapture.jpg/280px-ImageCapture.jpg) | ![ExtractText](https://upload.wikimedia.org/wikipedia/commons/thumb/e/e0/ExtractText.jpg/280px-ExtractText.jpg) | ![CompileCode](https://upload.wikimedia.org/wikipedia/commons/thumb/e/e4/CompileCode.jpg/280px-CompileCode.jpg) | ![EmailResult](https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/EmailResult.jpg/280px-EmailResult.jpg) |
73+
|-|-|-|-|-|
74+
| Entering the App | Capturing An Image | Extracting The Code | Displaying The Output | Emailing The Result |
75+
7076
The application consists of the various Content Pages that the user sees when they use the app. The details and purpose of each page that the user will come across as well as the flow in which these pages will occur have been documented in the [README.md file in the CodeCapture/CodeCapture/ folder](https://github.com/adityaoberai/CodeCapture/blob/master/CodeCapture/CodeCapture/README.md).
7177

72-
You can check out the [demo video](https://drive.google.com/file/d/1Dso3XfNttYl8mPMorpG0CSG9iAkEF5rS/view?usp=sharing) of the app as well.
78+
You can check out the [demo video](https://onedrive.live.com/embed?cid=703B19A0781C4859&resid=703B19A0781C4859%21152&authkey=AK5y1O1E3EKQbzg) of the app as well.

0 commit comments

Comments
 (0)