-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cda5c8a
commit 0c67573
Showing
13 changed files
with
673 additions
and
283 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<h1 align="center">FridgeMe</h1> | ||
|
||
## Inspiration | ||
|
||
Have you ever stared upon your lowly little fridge and thought to yourself, how could you make anything at all with all the crap you keep in your fridge? Fret no more! Being a college student myself, I too am always lazy to cook food, and every time I do want to make something, I would find myself not knowing what to do with all the food ingredients I have in my fridge, and those things will end up long in the fridge before you realize they have become bad. That's wasteful. That's bad. It's time for a change. | ||
|
||
## What it does | ||
|
||
It's a mobile app that lets you take a picture of your groceries and the food items in your fridge and the app will intelligently tell you what you can make (i.e. food recipes) based on what you have in your fridge. It also inventories the food items in your fridge and give them a freshness score so you know what's in there and what's going to go bad soon. | ||
|
||
## How we built it | ||
|
||
We used [React Native](https://facebook.github.io/react-native/) for the mobile app, connected it with Google's [Vision API](https://cloud.google.com/vision/) for image recognition, and extracted recipe data from the [Spoonacular API](https://spoonacular.com/food-api). | ||
|
||
## Challenges we ran into | ||
|
||
This is our first time using Google Cloud's Vision API. It took us some time trying to connect the Vision API to the app. Also, we weren't familiar with React Native, so there was a lot of first-times and frustrations. | ||
|
||
## Accomplishments that we're proud of | ||
|
||
We're proud that we've been able to produce a visually compelling app. We spent a lot of time working on the UI part, and I think it shows. Also, considering that React Native is cross platform, we're proud that we're able to create a product that works on both ends of the mobile ecosystem. | ||
|
||
## What we learned | ||
|
||
That due planning is important, and CSS is hard (CSS **is** a programming language, fight me) | ||
|
||
## What's next for FridgeMe | ||
|
||
We plan to further polish the app and think of ways to make the UI better. Also, deploying it to app stores would be a dream. | ||
|
||
**This project is a submission for [SquirrelHacks (HackISU) 2019](https://hackisu.stuorg.iastate.edu). Teammates are [Mirza Nor Azman](https://github.com/mirzanorazman) and [Mujahid Anuar](https://github.com/mujahidfa). At the time of the hackathon, all are students from University of Wisconsin-Madison.** | ||
|
||
Here's the link to the [Devpost](https://devpost.com/software/fridgeme) submission. |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
const URLs = [ | ||
{ | ||
name: "Orange", | ||
imageURL: | ||
"https://cdn2.iconfinder.com/data/icons/food-98/64/Food_orange-512.png" | ||
}, | ||
{ | ||
name: "Bell pepper", | ||
imageURL: | ||
"https://cdn3.iconfinder.com/data/icons/healthy-food-9/64/pepper-bell-healthy-vegetable-512.png" | ||
}, | ||
{ | ||
name: "unknown", | ||
imageURL: | ||
"https://cdn4.iconfinder.com/data/icons/food-100/32/unknown_vegetable_32x32-512.png" | ||
}, | ||
{ | ||
name: "Apple", | ||
image_path: | ||
"https://cdn0.iconfinder.com/data/icons/essentials-volume-6/128/apple-512.png" | ||
}, | ||
{ | ||
name: "Potato", | ||
image_path: | ||
"https://cdn2.iconfinder.com/data/icons/food-drink-60/50/1F954-potato-512.png" | ||
} | ||
]; | ||
|
||
export default URLs; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.