how can I create a full floor plan with multiple rooms in roomle using meazor scans (More than one room) - roomle

I have received the meazor and started to work with it.
I want to use it with Roomle as per the collaboration but struggle to create a floor plan for several rooms.
If I do it straight from Roomle, I can only import one room , every new scan creates a new room.
In addition it creates additional walls and it’s difficult to create the image of the room.
If I create it in the meazor app, I cannot find a way to import it into roomie.
How can I create a full floor plan to import into roomle and in which format can I import it into roomie?
I searched on the web but could not find a way to do it
Can anyone help me and provide me a how to do this?
I bought meazor as we need to plan our move and we were planning to use roomie of that so we can fit our furniture in the new place.
Many thanks for a quick help, I am only in our new place until tomorrow and would like to do the measurements so we can do the planning
Many thanks for your help in advance, very much appreciated
Markus
I was trying to create a floor plan with several rooms.
I was expecting to be able to build a full floor plan with several rooms.
in roomle, when I try to import from Meazor, it opens a new room every time and I cannot combine it .

Related

How can I create a bot able to ask for multiple values in a single prompt?

Imagine I want to create a bot to attend a pizza delivery service.
But I would like to handle if a customer want ask multiple ingredients like:
bot: what ingredients do you want?
user: please with cheese, mushrooms, and corn
I have tried AWS Lex, but a single intent can handle a single value per slot.
What framework and facility can I use to do that?
I know for sure that aws lex does not support multiple slots in a single prompt. However, the same is possible in an utterance. I am sure lex will comeup with this feature (to capture multiple slots in a single prompt) in the coming releases.
It seems like any framework that can handle multi-label classification can help with that. Alternativle try to train NER on these entities.

How to implement something like Amazon's "Customers who viewed also viewed..."?

This may sound very newbie, but I was wondering if there's a simple way to achieve something like Amazon's "Customers who viewed this also viewed..".
Theoretically I know you can do clustering, data mining, etc. to do something like this but I am just working on a ruby-on-rails app and want to incorporate something like this to my already existing app (which uses pgsql), and kind of lost.
I'm not looking for a super-sophisticated solution but just want something simple I can just quickly employ.
Any pointers would be appreciated. Thank you!
Amazon is able to pull this off because they have millions of users and a huge inventory which results in billions of data points. They crunch these data to make sense[user profiles, product profiles, likes, dislikes] and build a recommendation engine to help users discover products and drive sales. It makes sense to them.
Since you're not looking into data science and I have no idea of what all data you collect, you could start off by showing other products purchased by users who bought the specific product. Experiment and A/B test to see what works and what doesn't. Iterate on this, to show products bought by others users matching current users age, gender,nationality etc.
This will not be the recommendation engine that you are expecting but might drive some sales.

Xcode Mass Multiplayer (Not What You're Probably Thinking)

Okay so I would like to make a game, I'm trying not to divulge what it is but it requires anyone of a certain level in the game who is currently playing to be able to see each other in a sort of MMO style but not really.
For example:
Suppose I have players Bob, Mary, and Rob. Suppose that Bob is level 4, Mary is level 6 and Rob is also level 4. These would be shown in leaderboards by the way. What I would like is for Bob and Rob and anyone else who is level 4 AND CURRENTLY PLAYING to see each other in a sprite kit seen. I would like Mary to be off with other level 6's.
I have little idea of where to start with this. So my questions are:
Should I even use Xcode or would I be better off using Unity?
Does GameCenter have the capabilities for this or would I need to use Parse or something like that
And also, could you please point me in the right direction as far as the concepts of how this would work?
If you can answer any of this that would be AWESOME!!!!! If not that's cool too! Thanks in advance!
Xcode is an IDE and Unity is a Game-Engime.
If you need to create your own game since the beginning, you should use an IDE. But this is really LONG and sometime difficult. With a Game-Engime, a big part of the game is already programmed (physic, 3D animations...) so you can focus your time for program your game.
Game Center is for share a game or a score. Not played online.
For play online, you should create your own server.
Do you know how to program? Are you good in 2D/3D?
For create an MMO game, you must be logic.
First, you should create a client.
The client is the game
He contain the sounds, the graphics, the scripts...
Second, you should create a server.
The server is connected to all clients.
He contains the databases (Accounts, characters, HP, gold...)
So where started?
When a character move (from the client A), he send his new position to the server. The server send this position to all the client. So the client B know where is the character of the client A and can draw a tileset (in your example, you can draw the tileset only if the boolean sameLevel is true).
Take a look at the sockets:
http://www.linuxhowtos.org/C_C++/socket.htm
http://www.nullterminator.net/winsock.html
https://stackoverflow.com/questions/tagged/sockets%20c%2b%2b
https://stackoverflow.com/questions/tagged/sockets+c
Hint - I have already answer at some similar questions. Even if the programming language are sometime different, I give you the link, the logic is always the same so it can maybe help you:
Creating a Multiplayer game in python
Multiplayer game in Java. Connect client (player) to game that was created by other client
How would an MMO deal with calculating and sending packets for thousands of players every tick for a live action game?

iOS MapKit Showing Many Places From File

Im relatively new to iOS development and have been asked to make an app whereby I can place a load of pins on a map. I have been given an csv file with the lat, long, an identifier and some info for each of the places I need to plot but I'm not sure as to the best way to go from here. Any help is very appreciated!!
My Advise is to divide your task:
1 - Create a class to hold your coordinates and other useful information (name of the place, phone number, etc)
2- Create a parser, so you can parse your CSV file.
3- Add your data to your map.
Use the following links to help you out:
Import csv data (SDK iphone)
http://blog.objectgraph.com/index.php/2009/04/03/iphone-sdk-30-playing-with-map-kit-part-2/
Since you are new to this, take your time understanding what's going on. There are no shortcuts when learning. If you need more help, use my email so I can assist you.

Ambitious Networking Project for iOS, need direction

I'm challenging myself to write an app I know nothing about in 2 months time and I need some direction. Suppose you wanted to create an awesome iPad app that takes craigslist posts and displays them in a neat fashion. How would I gather the information from craigslist.org using Objective-C/C in xCode? What objects would I be interacting with to create network connections and how would that information be read in? Would I be reading the source code?
Thank you!
Craigslist has RSS feeds, so I suppose you could just get the link, parse the feed, and display it on a table. There are too many examples to count out there on how to do that.

Resources