StructureMap is not the limiting factor here. Which project(s) do your 2 interface implementations live in?
If they are in project 2 and 3 then you need to do your ObjectFactory.Initialize in projects 2 and 3 where you know which implementation of the interface you want to use.
If they are in project 1, you could create two new classes in project 1 that initialize a container in the way that is needed by project 2 and 3 and then make sure the proper class is used for each respective project.
In both scenarios, you need two different ways to build up the container to support the end result, which is project 2 and 3 in your case.